TSK-1148 Include Comments from Holger Hagen

This commit is contained in:
Jörg Heffner 2020-03-03 11:50:37 +01:00
parent 349d24d7b8
commit 80d813709b
2 changed files with 38 additions and 20 deletions

View File

@ -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
*/

View File

@ -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
+ "]";
}
}