Package | Description |
---|---|
uk.ac.cam.ucs.ibis.dto |
Provides DTO classes for transferring data from the server to client in
the web service API.
|
uk.ac.cam.ucs.ibis.methods |
Contains auto-generated classes which contain all the available methods
in the Lookup/Ibis web service API.
|
Modifier and Type | Field and Description |
---|---|
IbisAttribute |
IbisResult.attribute
The person or institution attribute returned by methods that return
a single attribute.
|
Modifier and Type | Field and Description |
---|---|
List<IbisAttribute> |
IbisPerson.attributes
A list of the person's attributes.
|
List<IbisAttribute> |
IbisResult.attributes
The list of attributes returned by methods that return lists of
person/institution attributes.
|
List<IbisAttribute> |
IbisInstitution.attributes
A list of the institution's attributes.
|
Modifier and Type | Method and Description |
---|---|
static IbisAttribute |
IbisAttribute.valueOf(String encodedStr)
Create an IbisAttribute from its ASCII encoded string representation.
|
Modifier and Type | Method and Description |
---|---|
IbisAttribute |
InstitutionMethods.addAttribute(String instid,
IbisAttribute attr,
int position,
boolean allowDuplicates,
String commitComment)
Add an attribute to an institution.
|
IbisAttribute |
PersonMethods.addAttribute(String scheme,
String identifier,
IbisAttribute attr,
int position,
boolean allowDuplicates,
String commitComment)
Add an attribute to a person.
|
IbisAttribute |
InstitutionMethods.getAttribute(String instid,
Long attrid)
Get a specific attribute of an institution.
|
IbisAttribute |
PersonMethods.getAttribute(String scheme,
String identifier,
Long attrid)
Get a specific attribute of a person.
|
IbisAttribute |
InstitutionMethods.updateAttribute(String instid,
Long attrid,
IbisAttribute attr,
String commitComment)
Update an attribute of an institution.
|
IbisAttribute |
PersonMethods.updateAttribute(String scheme,
String identifier,
Long attrid,
IbisAttribute attr,
String commitComment)
Update an attribute of a person.
|
Modifier and Type | Method and Description |
---|---|
List<IbisAttribute> |
InstitutionMethods.getAttributes(String instid,
String attrs)
Get one or more (possibly multi-valued) attributes of an institution.
|
List<IbisAttribute> |
PersonMethods.getAttributes(String scheme,
String identifier,
String attrs)
Get one or more (possibly multi-valued) attributes of a person.
|
Modifier and Type | Method and Description |
---|---|
IbisAttribute |
InstitutionMethods.addAttribute(String instid,
IbisAttribute attr,
int position,
boolean allowDuplicates,
String commitComment)
Add an attribute to an institution.
|
IbisAttribute |
PersonMethods.addAttribute(String scheme,
String identifier,
IbisAttribute attr,
int position,
boolean allowDuplicates,
String commitComment)
Add an attribute to a person.
|
IbisAttribute |
InstitutionMethods.updateAttribute(String instid,
Long attrid,
IbisAttribute attr,
String commitComment)
Update an attribute of an institution.
|
IbisAttribute |
PersonMethods.updateAttribute(String scheme,
String identifier,
Long attrid,
IbisAttribute attr,
String commitComment)
Update an attribute of a person.
|