979899100101102103104105106107
public String getEncodedDescription() { if (getDescription() != null) { EntityEncoder encoder = EntityEncoder.FULL; return encoder.encode(getDescription()); } else { return null; }
1516171819202122232425
} public String getEncodedLabel() { EntityEncoder encoder = EntityEncoder.FULL; return encoder.encode(getLabel()); } public String getLabel() { return group.getLabel();
155156157158159160161162163164165
public String getEncodedResolvedLabel() { EntityEncoder encoder = EntityEncoder.FULL; if (encodedResolvedLabel == null) { encodedResolvedLabel = encoder.encode(resolvedLabel); } return encodedResolvedLabel; } public void setResolvedLabel(String res)