Class SMSubConfig
- java.lang.Object
-
- com.sun.identity.console.base.model.SMSubConfig
-
- All Implemented Interfaces:
Serializable
public class SMSubConfig extends Object implements Serializable
Sub Configuration Display Object.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SMSubConfig(String id, String name, String type)Creates an instance ofSMSubConfig.SMSubConfig(String id, String name, String type, String localizedName, boolean hidden)Creates an instance ofSMSubConfig.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetID()Returns ID.StringgetLocalizedName()Get the localized name.StringgetName()Returns name.StringgetType()Returns type.booleanisHidden()Whether or not the sub configuration should be displayed in the console.
-
-
-
Constructor Detail
-
SMSubConfig
public SMSubConfig(String id, String name, String type, String localizedName, boolean hidden)
Creates an instance ofSMSubConfig.- Parameters:
id- ID of the sub configuration.name- Name of the sub configuration.type- Type of the sub configuration.localizedName- The localized name of the sub configuration.hidden- Whether or not the sub configuration should be displayed in the console.
-
-
Method Detail
-
getID
public String getID()
Returns ID.- Returns:
- ID.
-
getName
public String getName()
Returns name.- Returns:
- name.
-
getType
public String getType()
Returns type.- Returns:
- type.
-
getLocalizedName
public String getLocalizedName()
Get the localized name.- Returns:
- The localized name.
-
isHidden
public boolean isHidden()
Whether or not the sub configuration should be displayed in the console.- Returns:
- True if the sub configuration should be hidden.
-
-