Interface SubjectAreaNodeClients
-
- All Known Implementing Classes:
DefaultSubjectAreaNodeClients
public interface SubjectAreaNodeClients
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <C extends Category>
SubjectAreaNodeClient<C>categories()Get the subject area category API class - use this class to issue category calls.<G extends Glossary>
SubjectAreaNodeClient<G>glossaries()Get the subject area glossary API class - use this class to issue glossary calls.<P extends Project>
SubjectAreaNodeClient<P>projects()Get the subject area project API class - use this class to issue project calls.<T extends Term>
SubjectAreaNodeClient<T>terms()Get the subject area term API class - use this class to issue term calls.
-
-
-
Method Detail
-
glossaries
<G extends Glossary> SubjectAreaNodeClient<G> glossaries()
Get the subject area glossary API class - use this class to issue glossary calls.- Type Parameters:
G- type for supplied and return.- Returns:
- subject area glossary API class
-
terms
<T extends Term> SubjectAreaNodeClient<T> terms()
Get the subject area term API class - use this class to issue term calls.- Type Parameters:
T- type for supplied and return.- Returns:
- subject area term API class
-
categories
<C extends Category> SubjectAreaNodeClient<C> categories()
Get the subject area category API class - use this class to issue category calls.- Type Parameters:
C- type for supplied and return.- Returns:
- subject area category API class
-
projects
<P extends Project> SubjectAreaNodeClient<P> projects()
Get the subject area project API class - use this class to issue project calls.- Type Parameters:
P- type for supplied and return.- Returns:
- subject area project API class
-
-