Interface ClassificationSummary
- All Known Subinterfaces:
Classification
- All Known Implementing Classes:
ClassificationImpl,ClassificationSummaryImpl
public interface ClassificationSummary
Interface for ClassificationSummaries. This is a specific short model-object which only requieres
the most important information. Detailed information can be load afterwards via id.
-
Method Summary
Modifier and TypeMethodDescriptioncopy()Duplicates this ClassificationSummary without the id.Returns the applicationEntryPoint of the Classification.Returns the category of the Classification.getCustomAttribute(ClassificationCustomField customField) Deprecated.Use getCustomField(ClassificationCustomField) insteadgetCustomField(ClassificationCustomField customField) Returns the value of the specified ClassificationCustomField of the classification.Returns the domain of the Classification.getId()Returns the id of the Classification.getKey()Returns the key of the Classification.getName()Returns the name of the Classification.Returns the id of the parent Classification.Returns the key of the parent Classification.intReturns the priority of the Classification.Returns the serviceLevel of the Classification.getType()Returns the type of the Classification.
-
Method Details
-
getId
String getId()Returns the id of the Classification.- Returns:
- the id of the Classification
-
getKey
String getKey()Returns the key of the Classification.- Returns:
- the key of the Classification
-
getCategory
String getCategory()Returns the category of the Classification.- Returns:
- the category of the Classification
-
getType
String getType()Returns the type of the Classification.- Returns:
- the type of the Classification
-
getDomain
String getDomain()Returns the domain of the Classification.- Returns:
- the domain of the Classification
-
getName
String getName()Returns the name of the Classification.- Returns:
- the name of the Classification
-
getParentId
String getParentId()Returns the id of the parent Classification.- Returns:
- parentId
-
getParentKey
String getParentKey()Returns the key of the parent Classification.- Returns:
- parentKey
-
getServiceLevel
String getServiceLevel()Returns the serviceLevel of the Classification. It is a String in ISO-8601 duration format. See the parse() method ofDurationfor details.- Returns:
- serviceLevel
-
getApplicationEntryPoint
String getApplicationEntryPoint()Returns the applicationEntryPoint of the Classification.- Returns:
- applicationEntryPoint
-
getPriority
int getPriority()Returns the priority of the Classification.- Returns:
- priority
-
getCustomAttribute
Deprecated.Use getCustomField(ClassificationCustomField) insteadReturns the value of the specified ClassificationCustomField of the Classification.- Parameters:
customField- identifies which ClassificationCustomField is requested- Returns:
- the value for the given ClassificationCustomField
-
getCustomField
Returns the value of the specified ClassificationCustomField of the classification.- Parameters:
customField- identifies which ClassificationCustomField is requested- Returns:
- the value for the given ClassificationCustomField
-
copy
ClassificationSummary copy()Duplicates this ClassificationSummary without the id.- Returns:
- a copy of this ClassificationSummary
-