diff options
author | Jesse Morgan <jesse@jesterpm.net> | 2016-04-06 21:25:41 -0700 |
---|---|---|
committer | Jesse Morgan <jesse@jesterpm.net> | 2016-04-06 21:26:19 -0700 |
commit | 624e5d995c2fa593fb517a99e4b8b5f775afbeaf (patch) | |
tree | c6080ebbf909fb45fb055930abe64bbfb62a41f0 /src/main/java/com/p4square/ccbapi/CCBAPI.java | |
parent | 7367968483e4ddfedfa47598c508b343b44fc852 (diff) |
Adding getLookupTable API.
Diffstat (limited to 'src/main/java/com/p4square/ccbapi/CCBAPI.java')
-rw-r--r-- | src/main/java/com/p4square/ccbapi/CCBAPI.java | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/main/java/com/p4square/ccbapi/CCBAPI.java b/src/main/java/com/p4square/ccbapi/CCBAPI.java index f81a02f..bae2272 100644 --- a/src/main/java/com/p4square/ccbapi/CCBAPI.java +++ b/src/main/java/com/p4square/ccbapi/CCBAPI.java @@ -18,6 +18,16 @@ public interface CCBAPI extends Closeable { GetCustomFieldLabelsResponse getCustomFieldLabels() throws IOException; /** + * Retrieve the list of items in a particular lookup table. + * + * Lookup tables provide the list of options for various pulldown fields. + * + * @return A GetLookupTableResponse containing the item ids and labels. + * @throws IOException on failure. + */ + GetLookupTableResponse getLookupTable(GetLookupTableRequest request) throws IOException; + + /** * Retrieve one or more IndividualProfiles. * * If any of the following properties are set on the request, |