public class FlowTable extends AbstractOvsdbTableService
| Modifier and Type | Class and Description |
|---|---|
static class |
FlowTable.FlowTableColumn
FlowTable table column name.
|
| Constructor and Description |
|---|
FlowTable(DatabaseSchema dbSchema,
Row row)
Constructs a FlowTable object.
|
| Modifier and Type | Method and Description |
|---|---|
Column |
getExternalIdsColumn()
Get the Column entity which column name is "external_ids" from the Row
entity of attributes.
|
Column |
getFlowLimitColumn()
Get the Column entity which column name is "flow_limit" from the Row
entity of attributes.
|
Column |
getGroupsColumn()
Get the Column entity which column name is "groups" from the Row entity
of attributes.
|
Column |
getNameColumn()
Get the Column entity which column name is "name" from the Row entity of
attributes.
|
Column |
getOverflowPolicyColumn()
Get the Column entity which column name is "overflow_policy" from the Row
entity of attributes.
|
Column |
getPrefixesColumn()
Get the Column entity which column name is "prefixes" from the Row entity
of attributes.
|
void |
setExternalIds(Map<String,String> externalIds)
Add a Column entity which column name is "external_ids" to the Row entity
of attributes.
|
void |
setFlowLimit(Set<Long> flowLimit)
Add a Column entity which column name is "flow_limit" to the Row entity
of attributes.
|
void |
setGroups(Set<String> groups)
Add a Column entity which column name is "groups" to the Row entity of
attributes.
|
void |
setName(Set<String> name)
Add a Column entity which column name is "name" to the Row entity of
attributes.
|
void |
setOverflowPolicy(Set<String> overflowPolicy)
Add a Column entity which column name is "overflow_policy" to the Row
entity of attributes.
|
void |
setPrefixes(Set<String> prefixes)
Add a Column entity which column name is "prefixes" to the Row entity of
attributes.
|
dbSchema, equals, getColumnHandler, getDataHandler, getRow, getTableUuid, getTableUuidColumn, getTableVersion, getTableVersionColumn, hashCode, setDataHandler, tableDesc, toStringpublic FlowTable(DatabaseSchema dbSchema, Row row)
dbSchema - DatabaseSchemarow - Rowpublic Column getFlowLimitColumn()
public void setFlowLimit(Set<Long> flowLimit)
flowLimit - the column data which column name is "flow_limit"public Column getOverflowPolicyColumn()
public void setOverflowPolicy(Set<String> overflowPolicy)
overflowPolicy - the column data which column name is
"overflow_policy"public Column getGroupsColumn()
public void setGroups(Set<String> groups)
groups - the column data which column name is "groups"public Column getNameColumn()
public void setName(Set<String> name)
name - the column data which column name is "name"public Column getPrefixesColumn()
public void setPrefixes(Set<String> prefixes)
prefixes - the column data which column name is "prefixes"public Column getExternalIdsColumn()