Package org.openstack4j.model.manila
Interface SecurityServiceCreate
-
- All Superinterfaces:
Buildable<SecurityServiceCreateBuilder>,ModelEntity,Serializable
- All Known Implementing Classes:
ManilaSecurityServiceCreate
public interface SecurityServiceCreate extends ModelEntity, Buildable<SecurityServiceCreateBuilder>
Object used to create new security services.- Author:
- Daniel Gonzalez Nothnagel
-
-
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()StringgetDnsIp()StringgetDomain()StringgetName()StringgetPassword()StringgetServer()SecurityService.TypegetType()StringgetUser()
-
-
-
Method Detail
-
getType
SecurityService.Type getType()
- Returns:
- the security service type
-
getName
String getName()
- Returns:
- the security service name
-
getDescription
String getDescription()
- Returns:
- the security service description
-
getDnsIp
String getDnsIp()
- Returns:
- the DNS IP address that is used inside the tenant network
-
getUser
String getUser()
- Returns:
- the security service user or group name that is used by the tenant
-
getPassword
String getPassword()
- Returns:
- the user password
-
getDomain
String getDomain()
- Returns:
- the security service domain
-
getServer
String getServer()
- Returns:
- the security service host name or IP address
-
-