Interface ClassificationSummary
-
- All Known Subinterfaces:
Classification
- All Known Implementing Classes:
ClassificationImpl,ClassificationSummaryImpl
public interface ClassificationSummaryInterface for ClassificationSummaries. This is a specific short model-object which only requieres the most important information. Specific ones can be load afterwards via ID.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description ClassificationSummarycopy()Duplicates this ClassificationSummary without the id.StringgetApplicationEntryPoint()Gets the application entry point of the classification.StringgetCategory()Gets the category of the classification.StringgetCustomAttribute(ClassificationCustomField customField)Deprecated.UsegetCustomField(ClassificationCustomField)insteadStringgetCustomField(ClassificationCustomField customField)Gets the custom field of the classification.StringgetDomain()Gets the domain of the classification.StringgetId()Gets the id of the classification.StringgetKey()Gets the key of the classification.StringgetName()Gets the name of the classification.StringgetParentId()Gets the ID of the parent classification.StringgetParentKey()Gets the key of the parent classification.intgetPriority()Gets the priority of the classification.StringgetServiceLevel()Gets the service level of the classification.StringgetType()Gets the type of the classification.
-
-
-
Method Detail
-
getId
String getId()
Gets the id of the classification.- Returns:
- classificationId
-
getKey
String getKey()
Gets the key of the classification.- Returns:
- classificationKey
-
getCategory
String getCategory()
Gets the category of the classification.- Returns:
- classificationCategory
-
getType
String getType()
Gets the type of the classification.- Returns:
- classificationType
-
getDomain
String getDomain()
Gets the domain of the classification.- Returns:
- classificationDomain
-
getName
String getName()
Gets the name of the classification.- Returns:
- classificationName
-
getParentId
String getParentId()
Gets the ID of the parent classification.- Returns:
- parentId
-
getParentKey
String getParentKey()
Gets the key of the parent classification.- Returns:
- parentKey
-
getServiceLevel
String getServiceLevel()
Gets the service level of the classification. It is a String in ISO-8601 duration format. See the parse() method ofDurationfor details.- Returns:
- the service level
-
getApplicationEntryPoint
String getApplicationEntryPoint()
Gets the application entry point of the classification.- Returns:
- the application entry point
-
getPriority
int getPriority()
Gets the priority of the classification.- Returns:
- the priority
-
getCustomAttribute
String getCustomAttribute(ClassificationCustomField customField)
Deprecated.UsegetCustomField(ClassificationCustomField)insteadGets the custom attribute of the classification.- Parameters:
customField- identifies which custom attribute is requested.- Returns:
- the value for the given customField
-
getCustomField
String getCustomField(ClassificationCustomField customField)
Gets the custom field of the classification.- Parameters:
customField- identifies which custom field is requested.- Returns:
- the value for the given custom field
-
copy
ClassificationSummary copy()
Duplicates this ClassificationSummary without the id.- Returns:
- a copy of this ClassificationSummary
-
-