|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface AttributeServiceTransport
The transport wrapper for remoted AttributeService.
Method Summary | |
---|---|
void |
addAttribute(java.lang.String ticket,
java.util.List keys,
Attribute value)
Add an attribute to a List Attribute. |
void |
addAttribute(java.lang.String ticket,
java.lang.String path,
Attribute value)
Add an attribute to a List Attribute |
void |
addAttributes(java.lang.String ticket,
java.util.List keys,
java.util.List values)
Add a list of attributes. |
void |
addAttributes(java.lang.String ticket,
java.lang.String path,
java.util.List values)
Add a list of attributes. |
boolean |
exists(java.lang.String ticket,
java.util.List keys)
Does an attribute exist. |
boolean |
exists(java.lang.String ticket,
java.lang.String path)
Does an attribute exist. |
Attribute |
getAttribute(java.lang.String ticket,
java.util.List keys)
Get an attribute. |
Attribute |
getAttribute(java.lang.String ticket,
java.lang.String path)
Get an Attribute. |
int |
getCount(java.lang.String ticket,
java.util.List keys)
Get the size of a map or list. |
int |
getCount(java.lang.String ticket,
java.lang.String path)
Get the size of a map or list. |
java.util.List |
getKeys(java.lang.String ticket,
java.util.List keys)
Get all the keys for a give attribute path. |
java.util.List |
getKeys(java.lang.String ticket,
java.lang.String path)
Get all the keys for a given attribute path. |
java.util.List |
query(java.lang.String ticket,
java.util.List keys,
AttrQuery query)
Query for a list of attributes which are contained in a map defined by the given path and meet the query criteria. |
java.util.List |
query(java.lang.String ticket,
java.lang.String path,
AttrQuery query)
Query for a list of attributes which are contained in the map defined by the given path and meet the query criteria. |
void |
removeAttribute(java.lang.String ticket,
java.util.List keys,
int index)
Remove an attribute from a list. |
void |
removeAttribute(java.lang.String ticket,
java.util.List keys,
java.lang.String name)
Remove an Attribute. |
void |
removeAttribute(java.lang.String ticket,
java.lang.String path,
int index)
Remove an attribute from a list. |
void |
removeAttribute(java.lang.String ticket,
java.lang.String path,
java.lang.String name)
Remove an Attribute. |
void |
removeEntries(java.lang.String ticket,
java.util.List keys,
AttrQuery query)
Remove entries from a map that match a query. |
void |
removeEntries(java.lang.String ticket,
java.lang.String path,
AttrQuery query)
Remove entries from a map that match a query. |
void |
setAttribute(java.lang.String ticket,
java.util.List keys,
int index,
Attribute value)
Set an attribute in a list. |
void |
setAttribute(java.lang.String ticket,
java.util.List keys,
java.lang.String name,
Attribute value)
Set an attribute |
void |
setAttribute(java.lang.String ticket,
java.lang.String path,
int index,
Attribute value)
Set an attribute in a list. |
void |
setAttribute(java.lang.String ticket,
java.lang.String path,
java.lang.String name,
Attribute value)
Set an attribute. |
void |
setAttributes(java.lang.String ticket,
java.util.List keys,
java.util.Map entries)
Add a set of attributes. |
void |
setAttributes(java.lang.String ticket,
java.lang.String path,
java.util.Map entries)
Add a set of attributes. |
Method Detail |
---|
Attribute getAttribute(java.lang.String ticket, java.lang.String path)
ticket
- The authentication ticket.path
- The path of the Attribute.
Attribute getAttribute(java.lang.String ticket, java.util.List keys)
ticket
- The authentication ticket.keys
- The keys in the attribute path.
void setAttribute(java.lang.String ticket, java.lang.String path, java.lang.String name, Attribute value)
ticket
- The authentication ticket.name
- The name of the Attribute.value
- The value to set.void setAttribute(java.lang.String ticket, java.util.List keys, java.lang.String name, Attribute value)
ticket
- The authentication ticket.keys
- List of attribute path keys.name
- The name of the attribute to set.value
- The Attribute to set.void setAttribute(java.lang.String ticket, java.lang.String path, int index, Attribute value)
ticket
- The authentication ticket.path
- The path to the list.index
- The list index.value
- The Attribute to set.void setAttribute(java.lang.String ticket, java.util.List keys, int index, Attribute value)
ticket
- The authentication ticket.keys
- The path components to the list.index
- The list index.value
- The Attribute to set.void addAttribute(java.lang.String ticket, java.lang.String path, Attribute value)
ticket
- The authentication ticket.path
- The path to the list.value
- The Attribute to add.void addAttribute(java.lang.String ticket, java.util.List keys, Attribute value)
ticket
- The authentication ticket.keys
- The path components to the list.value
- The Attribute to add.void removeAttribute(java.lang.String ticket, java.lang.String path, java.lang.String name)
ticket
- The authentication ticket.name
- The name of the Attribute.void removeAttribute(java.lang.String ticket, java.util.List keys, java.lang.String name)
ticket
- The authentication ticket.keys
- List of attribute path keys.name
- The name of the attribute to remove.void removeAttribute(java.lang.String ticket, java.lang.String path, int index)
ticket
- The authentication ticket.path
- The path to the list.index
- The index to remove.void removeAttribute(java.lang.String ticket, java.util.List keys, int index)
ticket
- The authentication ticket.keys
- The components of the path to the list.index
- The index to remove.java.util.List query(java.lang.String ticket, java.lang.String path, AttrQuery query)
ticket
- The authentication ticket.path
- query
-
java.util.List query(java.lang.String ticket, java.util.List keys, AttrQuery query)
ticket
- The authentication ticket.keys
- The list of attribute path keys.query
-
java.util.List getKeys(java.lang.String ticket, java.lang.String path)
ticket
- The authentication ticket.path
- The attribute path.
java.util.List getKeys(java.lang.String ticket, java.util.List keys)
ticket
- The authentication ticket.keys
- The keys of the attribute path.
int getCount(java.lang.String ticket, java.util.List keys)
keys
- List of attribute path keys.
int getCount(java.lang.String ticket, java.lang.String path)
path
- The path to the map or list.
boolean exists(java.lang.String ticket, java.util.List keys)
keys
- List of attribute path keys.
boolean exists(java.lang.String ticket, java.lang.String path)
path
- The path to the attribute.
void addAttributes(java.lang.String ticket, java.util.List keys, java.util.List values)
ticket
- keys
- values
- void addAttributes(java.lang.String ticket, java.lang.String path, java.util.List values)
ticket
- path
- values
- void setAttributes(java.lang.String ticket, java.util.List keys, java.util.Map entries)
ticket
- keys
- entries
- void setAttributes(java.lang.String ticket, java.lang.String path, java.util.Map entries)
ticket
- path
- entries
- void removeEntries(java.lang.String ticket, java.util.List keys, AttrQuery query)
ticket
- keys
- query
- void removeEntries(java.lang.String ticket, java.lang.String path, AttrQuery query)
ticket
- path
- query
-
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |