Class NeutronFirewall
- java.lang.Object
-
- org.openstack4j.openstack.networking.domain.ext.NeutronFirewall
-
- All Implemented Interfaces:
Serializable,Buildable<FirewallBuilder>,ModelEntity,Firewall
public class NeutronFirewall extends Object implements Firewall
A Neutron Firewall (FwaaS) : Firewall Entity.- Author:
- Vishvesh Deshmukh
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classNeutronFirewall.FirewallConcreteBuilderstatic classNeutronFirewall.Firewallsstatic classNeutronFirewall.FirewallStatusThe state of a Neutron (Firewall - FwaaS) entity.-
Nested classes/interfaces inherited from interface org.openstack4j.common.Buildable
Buildable.Builder<T extends Buildable.Builder<T,M>,M extends Buildable<?>>
-
-
Constructor Summary
Constructors Constructor Description NeutronFirewall()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static FirewallBuilderbuilder()StringgetDescription()StringgetId()StringgetName()StringgetPolicy()List<String>getRouterIds()NeutronFirewall.FirewallStatusgetStatus()StringgetTenantId()BooleanisAdminStateUp()BooleanisShared()FirewallBuildertoBuilder()Wrap this Firewall to a builderStringtoString()
-
-
-
Method Detail
-
builder
public static FirewallBuilder builder()
- Returns:
- FirewallBuilder
-
toBuilder
public FirewallBuilder toBuilder()
Wrap this Firewall to a builder- Specified by:
toBuilderin interfaceBuildable<FirewallBuilder>- Returns:
- FirewallBuilder
-
getId
public String getId()
-
getName
public String getName()
-
getTenantId
public String getTenantId()
- Specified by:
getTenantIdin interfaceFirewall- Returns:
- tenantId : Owner of the Firewall. Only an administrative user can specify a tenant ID other than its own.
-
getDescription
public String getDescription()
- Specified by:
getDescriptionin interfaceFirewall- Returns:
- description : Human readable description for the firewall (1024 characters limit).
-
isAdminStateUp
public Boolean isAdminStateUp()
- Specified by:
isAdminStateUpin interfaceFirewall- Returns:
- adminstateup : The administrative state of the firewall, which is up (true) or down (false).
-
isShared
public Boolean isShared()
-
getStatus
public NeutronFirewall.FirewallStatus getStatus()
- Specified by:
getStatusin interfaceFirewall- Returns:
- status The status of the health monitor. Indicates whether the health monitor is operational.
- See Also:
NeutronFirewall.FirewallStatus
-
getRouterIds
public List<String> getRouterIds()
- Specified by:
getRouterIdsin interfaceFirewall- Returns:
- routerIds : A list of UUIDs for routers that are associated with the firewall.
-
getPolicy
public String getPolicy()
-
-