-
Type: Task
-
Status: Done (View Workflow)
-
Priority: Minor
-
Resolution: Fixed
-
Affects Version/s: common 0.11
-
Fix Version/s: common 0.11
-
Labels:
from :
@Length(max = 256, message = PROPERTY_NAME_ILLEGAL_LENGTH)
private String name;
to :
private static final int RANK_NAME_MAX_LENGTH=256;
@Length(max = RANK_NAME_MAX_LENGTH, message = PROPERTY_NAME_ILLEGAL_LENGTH)
private String name;