Interface FlowClassifier
-
- All Superinterfaces:
BasicResource,Buildable<FlowClassifierBuilder>,IdEntity,ModelEntity,Resource,Serializable
- All Known Implementing Classes:
NeutronFlowClassifier
public interface FlowClassifier extends Resource, Buildable<FlowClassifierBuilder>
A Flow Classifier Entity.- Author:
- Dmitry Gerenrot.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.openstack4j.common.Buildable
Buildable.Builder<T extends Buildable.Builder<T,M>,M extends Buildable<?>>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDescription()StringgetDestinationIpPrefix()IntegergetDestinationPortRangeMax()IntegergetDestinationPortRangeMin()EthertypegetEthertype()Map<String,String>getL7Parameters()StringgetLogicalDestinationPort()StringgetLogicalSourcePort()StringgetProtocol()StringgetSourceIpPrefix()IntegergetSourcePortRangeMax()IntegergetSourcePortRangeMin()-
Methods inherited from interface org.openstack4j.model.common.BasicResource
getName, setName
-
Methods inherited from interface org.openstack4j.model.common.Resource
getTenantId, setTenantId
-
-
-
-
Method Detail
-
getDescription
String getDescription()
- Returns:
- description : Human readable description for the flow classifier
-
getProtocol
String getProtocol()
- Returns:
- protocol : Short name for the protocol (TCP, UDP, etc)
-
getSourcePortRangeMin
Integer getSourcePortRangeMin()
- Returns:
- rangeMin : Minimum value for the source port, converted to String
-
getSourcePortRangeMax
Integer getSourcePortRangeMax()
- Returns:
- rangeMax : Maximum value for the source port, converted to String
-
getDestinationPortRangeMin
Integer getDestinationPortRangeMin()
- Returns:
- rangeMin : Minimum value for the destination port, converted to String
-
getDestinationPortRangeMax
Integer getDestinationPortRangeMax()
- Returns:
- rangeMax : Maximum value for the destination port, converted to String
-
getSourceIpPrefix
String getSourceIpPrefix()
- Returns:
- sourcePrefix : Prefix for the source ip addresses
-
getDestinationIpPrefix
String getDestinationIpPrefix()
- Returns:
- destinationPrefix : Prefix for the destination ip addresses
-
getLogicalSourcePort
String getLogicalSourcePort()
- Returns:
- logicalSourcePort : Id of the port pair at the start of the port chain
-
getLogicalDestinationPort
String getLogicalDestinationPort()
- Returns:
- logicalDestinationPort : Id of the port pair at the end of the port chain
-
getEthertype
Ethertype getEthertype()
- Returns:
- ethertype
-
-