in scim-spec/scim-spec-schema/src/main/java/org/apache/directory/scim/spec/filter/attribute/AttributeReference.java [98:115]
public String getAttributeBase() {
String attributeBase;
StringBuilder sb = new StringBuilder();
if (this.urn != null) {
sb.append(this.urn);
if (this.subAttributeName != null) {
sb.append(":");
sb.append(this.attributeName);
}
} else if (this.subAttributeName != null) {
sb.append(this.attributeName);
}
attributeBase = sb.toString();
return attributeBase;
}