TSK-1148 Include Comments from Holger Hagen
This commit is contained in:
parent
349d24d7b8
commit
80d813709b
|
@ -63,7 +63,7 @@ public interface ClassificationSummary {
|
|||
String getParentKey();
|
||||
|
||||
/**
|
||||
* Gets the service level of the parent classification. It is a String in ISO-8601 duration
|
||||
* Gets the service level of the classification. It is a String in ISO-8601 duration
|
||||
* format. See the parse() method of {@code Duration} for details.
|
||||
*
|
||||
* @return the service level
|
||||
|
@ -71,7 +71,7 @@ public interface ClassificationSummary {
|
|||
String getServiceLevel();
|
||||
|
||||
/**
|
||||
* Gets the application entry point of the parent classification.
|
||||
* Gets the application entry point of the classification.
|
||||
*
|
||||
* @return the application entry point
|
||||
*/
|
||||
|
|
|
@ -206,26 +206,44 @@ public class ClassificationSummaryResource extends ResourceSupport {
|
|||
@Override
|
||||
public String toString() {
|
||||
return "ClassificationSummaryResource ["
|
||||
+ "classificationId= "
|
||||
+ "classificationId="
|
||||
+ this.classificationId
|
||||
+ "key= "
|
||||
+ this.key
|
||||
+ "parentId= "
|
||||
+ this.parentId
|
||||
+ "parentKey= "
|
||||
+ this.parentKey
|
||||
+ "type= "
|
||||
+ this.type
|
||||
+ "domain= "
|
||||
+ this.domain
|
||||
+ "name= "
|
||||
+ this.name
|
||||
+ "priority= "
|
||||
+ this.priority
|
||||
+ "serviceLevel="
|
||||
+ this.serviceLevel
|
||||
+ "applicationEntryPoint="
|
||||
+ ", applicationEntryPoint="
|
||||
+ this.applicationEntryPoint
|
||||
+ ", category="
|
||||
+ this.category
|
||||
+ ", domain="
|
||||
+ this.domain
|
||||
+ ", key="
|
||||
+ this.key
|
||||
+ ", name="
|
||||
+ this.name
|
||||
+ ", parentId="
|
||||
+ this.parentId
|
||||
+ ", parentKey="
|
||||
+ this.parentKey
|
||||
+ ", priority="
|
||||
+ this.priority
|
||||
+ ", serviceLevel="
|
||||
+ this.serviceLevel
|
||||
+ ", type="
|
||||
+ this.type
|
||||
+ ", custom1="
|
||||
+ this.custom1
|
||||
+ ", custom2="
|
||||
+ this.custom2
|
||||
+ ", custom3="
|
||||
+ this.custom3
|
||||
+ ", custom4="
|
||||
+ this.custom4
|
||||
+ ", custom5="
|
||||
+ this.custom5
|
||||
+ ", custom6="
|
||||
+ this.custom6
|
||||
+ ", custom7="
|
||||
+ this.custom7
|
||||
+ ", custom8="
|
||||
+ this.custom8
|
||||
+ "]";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue