@RestController @RequestMapping(value="/api/glossaries") public class GlossaryViewController extends SecureController
| Constructor and Description |
|---|
GlossaryViewController() |
| Modifier and Type | Method and Description |
|---|---|
List<Glossary> |
getAllGlossaries(Integer from,
Integer size,
javax.servlet.http.HttpServletRequest request) |
List<GlossaryCategory> |
getAllGlossaryCategories(Integer from,
Integer size,
javax.servlet.http.HttpServletRequest request) |
List<GlossaryTerm> |
getAllGlossaryTerms(Integer from,
Integer size,
javax.servlet.http.HttpServletRequest request) |
GlossaryTerm |
getAntonyms(String termGUID,
javax.servlet.http.HttpServletRequest request) |
List<GlossaryTerm> |
getAntonyms(String termGUID,
Integer from,
Integer size,
javax.servlet.http.HttpServletRequest request) |
List<GlossaryTerm> |
getAssignedElements(String termGUID,
Integer from,
Integer size,
javax.servlet.http.HttpServletRequest request) |
List<GlossaryTerm> |
getAttributes(String termGUID,
Integer from,
Integer size,
javax.servlet.http.HttpServletRequest request) |
List<GlossaryCategory> |
getCategories(String glossaryGUID,
Integer from,
Integer size,
javax.servlet.http.HttpServletRequest request) |
GlossaryCategory |
getCategory(String categoryGUID,
javax.servlet.http.HttpServletRequest request) |
Glossary |
getCategoryHomeGlossary(String categoryGUID,
javax.servlet.http.HttpServletRequest request) |
List<ExternalGlossaryLink> |
getExternalGlossaryLinks(String categoryGUID,
Integer from,
Integer size,
javax.servlet.http.HttpServletRequest request) |
List<ExternalGlossaryLink> |
getExternalGlossaryLinksOfGlossary(String glossaryGUID,
Integer from,
Integer size,
javax.servlet.http.HttpServletRequest request) |
List<ExternalGlossaryLink> |
getExternalGlossaryLinksOfTerm(String termGUID,
Integer from,
Integer size,
javax.servlet.http.HttpServletRequest request) |
Glossary |
getGlossary(String glossaryGUID,
javax.servlet.http.HttpServletRequest request) |
List<GlossaryTerm> |
getIsATerms(String termGUID,
Integer from,
Integer size,
javax.servlet.http.HttpServletRequest request) |
List<GlossaryTerm> |
getPreferredTerms(String termGUID,
Integer from,
Integer size,
javax.servlet.http.HttpServletRequest request) |
List<GlossaryTerm> |
getRelatedTerms(String termGUID,
Integer from,
Integer size,
javax.servlet.http.HttpServletRequest request) |
List<GlossaryTerm> |
getReplacementTerms(String termGUID,
Integer from,
Integer size,
javax.servlet.http.HttpServletRequest request) |
List<GlossaryCategory> |
getSubcategories(String categoryGUID,
Integer from,
Integer size,
javax.servlet.http.HttpServletRequest request) |
List<GlossaryTerm> |
getSubtypes(String termGUID,
Integer from,
Integer size,
javax.servlet.http.HttpServletRequest request) |
Glossary |
getSynonyms(String termGUID,
javax.servlet.http.HttpServletRequest request) |
List<GlossaryTerm> |
getSynonyms(String termGUID,
Integer from,
Integer size,
javax.servlet.http.HttpServletRequest request) |
List<GlossaryTerm> |
getTermsOfCategory(String categoryGUID,
Integer from,
Integer size,
javax.servlet.http.HttpServletRequest request) |
List<GlossaryTerm> |
getTermsOfGlossary(String glossaryGUID,
Integer from,
Integer size,
javax.servlet.http.HttpServletRequest request) |
List<GlossaryTerm> |
getTranslations(String termGUID,
Integer from,
Integer size,
javax.servlet.http.HttpServletRequest request) |
List<GlossaryTerm> |
getTypes(String termGUID,
Integer from,
Integer size,
javax.servlet.http.HttpServletRequest request) |
List<GlossaryTerm> |
getUsedInContexts(String termGUID,
Integer from,
Integer size,
javax.servlet.http.HttpServletRequest request) |
List<GlossaryTerm> |
getValidValues(String termGUID,
Integer from,
Integer size,
javax.servlet.http.HttpServletRequest request) |
getUser@GetMapping public List<Glossary> getAllGlossaries(@RequestParam(defaultValue="0") Integer from, @RequestParam(defaultValue="100") Integer size, javax.servlet.http.HttpServletRequest request) throws GlossaryViewOmasException, InvalidParameterException, PropertyServerException
from - the index from witch the results to start, used for paginationsize - number of results returned, used for paginationPropertyServerException - if a problem occurs while serving the requestInvalidParameterException - if parameter validation failsGlossaryViewOmasException - if a problem occurs on the omas backend@GetMapping(value="/terms") public List<GlossaryTerm> getAllGlossaryTerms(@RequestParam(defaultValue="0") Integer from, @RequestParam(defaultValue="100") Integer size, javax.servlet.http.HttpServletRequest request) throws GlossaryViewOmasException, InvalidParameterException, PropertyServerException
from - the index from witch the results to start, used for paginationsize - number of results returned, used for paginationPropertyServerException - if a problem occurs while serving the requestInvalidParameterException - if parameter validation failsGlossaryViewOmasException - if a problem occurs on the omas backend@GetMapping(value="/categories") public List<GlossaryCategory> getAllGlossaryCategories(@RequestParam(defaultValue="0") Integer from, @RequestParam(defaultValue="100") Integer size, javax.servlet.http.HttpServletRequest request) throws GlossaryViewOmasException, InvalidParameterException, PropertyServerException
from - the index from witch the results to start, used for paginationsize - number of results returned, used for paginationPropertyServerException - if a problem occurs while serving the requestInvalidParameterException - if parameter validation failsGlossaryViewOmasException - if a problem occurs on the omas backend@GetMapping(value="/{glossaryGUID}")
public Glossary getGlossary(@PathVariable(value="glossaryGUID")
String glossaryGUID,
javax.servlet.http.HttpServletRequest request)
throws GlossaryViewOmasException,
InvalidParameterException,
PropertyServerException
glossaryGUID - GUID of the glossary to be retrievedPropertyServerException - if a problem occurs while serving the requestInvalidParameterException - if parameter validation failsGlossaryViewOmasException - if a problem occurs on the omas backend@GetMapping(value="/{glossaryGUID}/categories")
public List<GlossaryCategory> getCategories(@PathVariable(value="glossaryGUID")
String glossaryGUID,
@RequestParam(defaultValue="0")
Integer from,
@RequestParam(defaultValue="100")
Integer size,
javax.servlet.http.HttpServletRequest request)
throws GlossaryViewOmasException,
InvalidParameterException,
PropertyServerException
glossaryGUID - GUID of the glossaryfrom - the index from witch the results to start, used for paginationsize - number of results returned, used for paginationPropertyServerException - if a problem occurs while serving the requestInvalidParameterException - if parameter validation failsGlossaryViewOmasException - if a problem occurs on the omas backend@GetMapping(value="/{glossaryGUID}/terms")
public List<GlossaryTerm> getTermsOfGlossary(@PathVariable(value="glossaryGUID")
String glossaryGUID,
@RequestParam(defaultValue="0")
Integer from,
@RequestParam(defaultValue="100")
Integer size,
javax.servlet.http.HttpServletRequest request)
throws GlossaryViewOmasException,
InvalidParameterException,
PropertyServerException
glossaryGUID - GUID of the glossaryfrom - the index from witch the results to start, used for paginationsize - number of results returned, used for paginationPropertyServerException - if a problem occurs while serving the requestInvalidParameterException - if parameter validation failsGlossaryViewOmasException - if a problem occurs on the omas backend@GetMapping(value="/{glossaryGUID}/externalGlossaryLinks")
public List<ExternalGlossaryLink> getExternalGlossaryLinksOfGlossary(@PathVariable(value="glossaryGUID")
String glossaryGUID,
@RequestParam(defaultValue="0")
Integer from,
@RequestParam(defaultValue="100")
Integer size,
javax.servlet.http.HttpServletRequest request)
throws GlossaryViewOmasException,
InvalidParameterException,
PropertyServerException
glossaryGUID - GUID of the glossaryfrom - the index from witch the results to start, used for paginationsize - number of results returned, used for paginationPropertyServerException - if a problem occurs while serving the requestInvalidParameterException - if parameter validation failsGlossaryViewOmasException - if a problem occurs on the omas backend@GetMapping(value="/terms/{termGUID}")
public GlossaryTerm getAntonyms(@PathVariable(value="termGUID")
String termGUID,
javax.servlet.http.HttpServletRequest request)
throws GlossaryViewOmasException,
InvalidParameterException,
PropertyServerException
termGUID - GUID of the termPropertyServerException - if a problem occurs while serving the requestInvalidParameterException - if parameter validation failsGlossaryViewOmasException - if a problem occurs on the omas backend@GetMapping(value="/terms/{termGUID}/antonyms")
public List<GlossaryTerm> getAntonyms(@PathVariable(value="termGUID")
String termGUID,
@RequestParam(defaultValue="0")
Integer from,
@RequestParam(defaultValue="100")
Integer size,
javax.servlet.http.HttpServletRequest request)
throws GlossaryViewOmasException,
InvalidParameterException,
PropertyServerException
termGUID - GUID of the termfrom - the index from witch the results to start, used for paginationsize - number of results returned, used for paginationPropertyServerException - if a problem occurs while serving the requestInvalidParameterException - if parameter validation failsGlossaryViewOmasException - if a problem occurs on the omas backend@GetMapping(value="/terms/{termGUID}/assignedElements")
public List<GlossaryTerm> getAssignedElements(@PathVariable(value="termGUID")
String termGUID,
@RequestParam(defaultValue="0")
Integer from,
@RequestParam(defaultValue="100")
Integer size,
javax.servlet.http.HttpServletRequest request)
throws GlossaryViewOmasException,
InvalidParameterException,
PropertyServerException
termGUID - GUID of the termfrom - the index from witch the results to start, used for paginationsize - number of results returned, used for paginationPropertyServerException - if a problem occurs while serving the requestInvalidParameterException - if parameter validation failsGlossaryViewOmasException - if a problem occurs on the omas backend@GetMapping(value="/terms/{termGUID}/attributes")
public List<GlossaryTerm> getAttributes(@PathVariable(value="termGUID")
String termGUID,
@RequestParam(defaultValue="0")
Integer from,
@RequestParam(defaultValue="100")
Integer size,
javax.servlet.http.HttpServletRequest request)
throws GlossaryViewOmasException,
InvalidParameterException,
PropertyServerException
termGUID - GUID of the termfrom - the index from witch the results to start, used for paginationsize - number of results returned, used for paginationPropertyServerException - if a problem occurs while serving the requestInvalidParameterException - if parameter validation failsGlossaryViewOmasException - if a problem occurs on the omas backend@GetMapping(value="/terms/{termGUID}/isA")
public List<GlossaryTerm> getIsATerms(@PathVariable(value="termGUID")
String termGUID,
@RequestParam(defaultValue="0")
Integer from,
@RequestParam(defaultValue="100")
Integer size,
javax.servlet.http.HttpServletRequest request)
throws GlossaryViewOmasException,
InvalidParameterException,
PropertyServerException
termGUID - GUID of the termfrom - the index from witch the results to start, used for paginationsize - number of results returned, used for paginationPropertyServerException - if a problem occurs while serving the requestInvalidParameterException - if parameter validation failsGlossaryViewOmasException - if a problem occurs on the omas backend@GetMapping(value="/terms/{termGUID}/preferredTerms")
public List<GlossaryTerm> getPreferredTerms(@PathVariable(value="termGUID")
String termGUID,
@RequestParam(defaultValue="0")
Integer from,
@RequestParam(defaultValue="100")
Integer size,
javax.servlet.http.HttpServletRequest request)
throws GlossaryViewOmasException,
InvalidParameterException,
PropertyServerException
termGUID - GUID of the termfrom - the index from witch the results to start, used for paginationsize - number of results returned, used for paginationPropertyServerException - if a problem occurs while serving the requestInvalidParameterException - if parameter validation failsGlossaryViewOmasException - if a problem occurs on the omas backend@GetMapping(value="/terms/{termGUID}/relatedTerms")
public List<GlossaryTerm> getRelatedTerms(@PathVariable(value="termGUID")
String termGUID,
@RequestParam(defaultValue="0")
Integer from,
@RequestParam(defaultValue="100")
Integer size,
javax.servlet.http.HttpServletRequest request)
throws GlossaryViewOmasException,
InvalidParameterException,
PropertyServerException
termGUID - GUID of the termfrom - the index from witch the results to start, used for paginationsize - number of results returned, used for paginationPropertyServerException - if a problem occurs while serving the requestInvalidParameterException - if parameter validation failsGlossaryViewOmasException - if a problem occurs on the omas backend@GetMapping(value="/terms/{termGUID}/replacementTerms")
public List<GlossaryTerm> getReplacementTerms(@PathVariable(value="termGUID")
String termGUID,
@RequestParam(defaultValue="0")
Integer from,
@RequestParam(defaultValue="100")
Integer size,
javax.servlet.http.HttpServletRequest request)
throws GlossaryViewOmasException,
InvalidParameterException,
PropertyServerException
termGUID - GUID of the termfrom - the index from witch the results to start, used for paginationsize - number of results returned, used for paginationPropertyServerException - if a problem occurs while serving the requestInvalidParameterException - if parameter validation failsGlossaryViewOmasException - if a problem occurs on the omas backend@GetMapping(value="/terms/{termGUID}/subtypes")
public List<GlossaryTerm> getSubtypes(@PathVariable(value="termGUID")
String termGUID,
@RequestParam(defaultValue="0")
Integer from,
@RequestParam(defaultValue="100")
Integer size,
javax.servlet.http.HttpServletRequest request)
throws GlossaryViewOmasException,
InvalidParameterException,
PropertyServerException
termGUID - GUID of the termfrom - the index from witch the results to start, used for paginationsize - number of results returned, used for paginationPropertyServerException - if a problem occurs while serving the requestInvalidParameterException - if parameter validation failsGlossaryViewOmasException - if a problem occurs on the omas backend@GetMapping(value="/terms/{termGUID}/synonyms")
public List<GlossaryTerm> getSynonyms(@PathVariable(value="termGUID")
String termGUID,
@RequestParam(defaultValue="0")
Integer from,
@RequestParam(defaultValue="100")
Integer size,
javax.servlet.http.HttpServletRequest request)
throws GlossaryViewOmasException,
InvalidParameterException,
PropertyServerException
termGUID - GUID of the termfrom - the index from witch the results to start, used for paginationsize - number of results returned, used for paginationPropertyServerException - if a problem occurs while serving the requestInvalidParameterException - if parameter validation failsGlossaryViewOmasException - if a problem occurs on the omas backend@GetMapping(value="/terms/{termGUID}/translations")
public List<GlossaryTerm> getTranslations(@PathVariable(value="termGUID")
String termGUID,
@RequestParam(defaultValue="0")
Integer from,
@RequestParam(defaultValue="100")
Integer size,
javax.servlet.http.HttpServletRequest request)
throws GlossaryViewOmasException,
InvalidParameterException,
PropertyServerException
termGUID - GUID of the termfrom - the index from witch the results to start, used for paginationsize - number of results returned, used for paginationPropertyServerException - if a problem occurs while serving the requestInvalidParameterException - if parameter validation failsGlossaryViewOmasException - if a problem occurs on the omas backend@GetMapping(value="/terms/{termGUID}/types")
public List<GlossaryTerm> getTypes(@PathVariable(value="termGUID")
String termGUID,
@RequestParam(defaultValue="0")
Integer from,
@RequestParam(defaultValue="100")
Integer size,
javax.servlet.http.HttpServletRequest request)
throws GlossaryViewOmasException,
InvalidParameterException,
PropertyServerException
termGUID - GUID of the termfrom - the index from witch the results to start, used for paginationsize - number of results returned, used for paginationPropertyServerException - if a problem occurs while serving the requestInvalidParameterException - if parameter validation failsGlossaryViewOmasException - if a problem occurs on the omas backend@GetMapping(value="/terms/{termGUID}/usedInContext")
public List<GlossaryTerm> getUsedInContexts(@PathVariable(value="termGUID")
String termGUID,
@RequestParam(defaultValue="0")
Integer from,
@RequestParam(defaultValue="100")
Integer size,
javax.servlet.http.HttpServletRequest request)
throws GlossaryViewOmasException,
InvalidParameterException,
PropertyServerException
termGUID - GUID of the termfrom - the index from witch the results to start, used for paginationsize - number of results returned, used for paginationPropertyServerException - if a problem occurs while serving the requestInvalidParameterException - if parameter validation failsGlossaryViewOmasException - if a problem occurs on the omas backend@GetMapping(value="/terms/{termGUID}/validValues")
public List<GlossaryTerm> getValidValues(@PathVariable(value="termGUID")
String termGUID,
@RequestParam(defaultValue="0")
Integer from,
@RequestParam(defaultValue="100")
Integer size,
javax.servlet.http.HttpServletRequest request)
throws GlossaryViewOmasException,
InvalidParameterException,
PropertyServerException
termGUID - GUID of the termfrom - the index from witch the results to start, used for paginationsize - number of results returned, used for paginationPropertyServerException - if a problem occurs while serving the requestInvalidParameterException - if parameter validation failsGlossaryViewOmasException - if a problem occurs on the omas backend@GetMapping(value="/terms/{termGUID}/homeGlossary")
public Glossary getSynonyms(@PathVariable(value="termGUID")
String termGUID,
javax.servlet.http.HttpServletRequest request)
throws GlossaryViewOmasException,
InvalidParameterException,
PropertyServerException
termGUID - GUID of the termPropertyServerException - if a problem occurs while serving the requestInvalidParameterException - if parameter validation failsGlossaryViewOmasException - if a problem occurs on the omas backend@GetMapping(value="/terms/{termGUID}/externalGlossaryLinks")
public List<ExternalGlossaryLink> getExternalGlossaryLinksOfTerm(@PathVariable(value="termGUID")
String termGUID,
@RequestParam(defaultValue="0")
Integer from,
@RequestParam(defaultValue="100")
Integer size,
javax.servlet.http.HttpServletRequest request)
throws GlossaryViewOmasException,
InvalidParameterException,
PropertyServerException
termGUID - GUID of the termfrom - the index from witch the results to start, used for paginationsize - number of results returned, used for paginationPropertyServerException - if a problem occurs while serving the requestInvalidParameterException - if parameter validation failsGlossaryViewOmasException - if a problem occurs on the omas backend@GetMapping(value="/categories/{categoryGUID}")
public GlossaryCategory getCategory(@PathVariable(value="categoryGUID")
String categoryGUID,
javax.servlet.http.HttpServletRequest request)
throws GlossaryViewOmasException,
InvalidParameterException,
PropertyServerException
categoryGUID - GUID of the category to be retrievedPropertyServerException - if a problem occurs while serving the requestInvalidParameterException - if parameter validation failsGlossaryViewOmasException - if a problem occurs on the omas backend@GetMapping(value="/categories/{categoryGUID}/homeGlossary")
public Glossary getCategoryHomeGlossary(@PathVariable(value="categoryGUID")
String categoryGUID,
javax.servlet.http.HttpServletRequest request)
throws GlossaryViewOmasException,
InvalidParameterException,
PropertyServerException
categoryGUID - GUID of the categoryrequest - PropertyServerException - if a problem occurs while serving the requestInvalidParameterException - if parameter validation failsGlossaryViewOmasException - if a problem occurs on the omas backend@GetMapping(value="/categories/{categoryGUID}/subcategories")
public List<GlossaryCategory> getSubcategories(@PathVariable(value="categoryGUID")
String categoryGUID,
@RequestParam(defaultValue="0")
Integer from,
@RequestParam(defaultValue="100")
Integer size,
javax.servlet.http.HttpServletRequest request)
throws GlossaryViewOmasException,
InvalidParameterException,
PropertyServerException
categoryGUID - GUID of the categoryfrom - the index from witch the results to start, used for paginationsize - number of results returned, used for paginationPropertyServerException - if a problem occurs while serving the requestInvalidParameterException - if parameter validation failsGlossaryViewOmasException - if a problem occurs on the omas backend@GetMapping(value="/categories/{categoryGUID}/terms")
public List<GlossaryTerm> getTermsOfCategory(@PathVariable(value="categoryGUID")
String categoryGUID,
@RequestParam(defaultValue="0")
Integer from,
@RequestParam(defaultValue="100")
Integer size,
javax.servlet.http.HttpServletRequest request)
throws GlossaryViewOmasException,
InvalidParameterException,
PropertyServerException
categoryGUID - GUID of the catgitegoryfrom - the index from witch the results to start, used for paginationsize - number of results returned, used for paginationPropertyServerException - if a problem occurs while serving the requestInvalidParameterException - if parameter validation failsGlossaryViewOmasException - if a problem occurs on the omas backend@GetMapping(value="/categories/{categoryGUID}/externalGlossaryLinks")
public List<ExternalGlossaryLink> getExternalGlossaryLinks(@PathVariable(value="categoryGUID")
String categoryGUID,
@RequestParam(defaultValue="0")
Integer from,
@RequestParam(defaultValue="100")
Integer size,
javax.servlet.http.HttpServletRequest request)
throws GlossaryViewOmasException,
InvalidParameterException,
PropertyServerException
categoryGUID - GUID of the categoryfrom - the index from witch the results to start, used for paginationsize - number of results returned, used for paginationrequest - PropertyServerException - if a problem occurs while serving the requestInvalidParameterException - if parameter validation failsGlossaryViewOmasException - if a problem occurs on the omas backendCopyright © 2018–2020 ODPi. All rights reserved.