|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.unboundid.scim.sdk.AttributePath
public class AttributePath
This class represents a path to an attribute or sub-attribute. The path is a string comprising an schema URI (the SCIM core schema is assumed if absent), an attribute name, and an optional sub-attribute name.
| Constructor Summary | |
|---|---|
AttributePath(String attributeSchema,
String attributeName,
String subAttributeName)
Create a new attribute path. |
|
| Method Summary | |
|---|---|
String |
getAttributeName()
Retrieve the name of the attribute. |
String |
getAttributeSchema()
Retrieve the URI of the attribute schema. |
String |
getSubAttributeName()
Retrieve the name of the sub-attribute, or null if absent. |
static AttributePath |
parse(String path)
Parse an attribute path. |
String |
toString()
|
void |
toString(StringBuilder builder)
Append the string representation of the attribute path to the provided buffer. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Constructor Detail |
|---|
public AttributePath(String attributeSchema,
String attributeName,
String subAttributeName)
attributeSchema - The URI of the attribute schema.attributeName - The name of the attribute.subAttributeName - The name of the sub-attribute, or null if
absent.| Method Detail |
|---|
public static AttributePath parse(String path)
path - The attribute path.
public String toString()
toString in class Objectpublic void toString(StringBuilder builder)
builder - The buffer to which the string representation of the
attribute path is to be appended.public String getAttributeSchema()
public String getAttributeName()
public String getSubAttributeName()
null if absent.
null if absent.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||