Interface ServerIdentityConfiguration
-
- All Known Implementing Classes:
ServerIdentityConfigurationImpl
public interface ServerIdentityConfiguration
Defines minimal common configurations for server identity configuration properties.
Your configuration class must implement it
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getIdentityName()
Must return the value of a 'identityName' attributejava.lang.String
getIdentityRole()
Must return the value of a 'identityRole' attributeint
getIdentityServerId()
Must return the value of a 'IdentityServerId' attributeint
getIdentitySiteId()
Must return the value of a 'IdentitySiteId' attribute
-
-
-
Method Detail
-
getIdentityName
java.lang.String getIdentityName()
Must return the value of a 'identityName' attribute- Returns:
- the identity name value
-
getIdentityServerId
int getIdentityServerId()
Must return the value of a 'IdentityServerId' attribute- Returns:
- the identity platform id value
-
getIdentitySiteId
int getIdentitySiteId()
Must return the value of a 'IdentitySiteId' attribute- Returns:
- the identity platform id value
-
getIdentityRole
java.lang.String getIdentityRole()
Must return the value of a 'identityRole' attribute- Returns:
- the identity role value
-
-