List of usage examples for org.springframework.web.bind.annotation RestController subclass-usage
From source file com.pkrete.locationservice.admin.controller.rest.v1.AuthenticationRestController.java
/**
* This class provides REST API for authenticating users. Authentication is
* handled by
* {@link RestAuthenticationInterceptor RestAuthenticationInterceptor}.
*
* /authenticate [POST]
From source file com.pkrete.locationservice.admin.controller.rest.v1.UserGroupsRestController.java
/**
* This class provides REST API to UserGroup enumerations. This class implements
* list all user groups function.
*
* INDEX /usergroups [GET]
*
From source file com.pkrete.locationservice.admin.controller.rest.v1.AdminRestController.java
/**
* This controller provides access to admin functionality e.g. regenerating
* search indexes.
*
* INDEX /admin/index [GET] INDEX /admin/index [POST]
* ?type=location|owner|language|all
From source file org.ambraproject.rhino.rest.controller.ContentRepoController.java
@Controller public class ContentRepoController extends RestController { @Autowired private RuntimeConfiguration runtimeConfiguration;
From source file eu.trentorise.smartcampus.unidataservice.controller.rest.CanteenController.java
@Controller public class CanteenController extends RestController { @Autowired private MongoTemplate mongoTemplate;
From source file com.pkrete.locationservice.admin.controller.rest.v1.MyAccountRestController.java
/**
* This class provides REST API to users for accessing their own account. Users
* can read and update their account.
*
* READ /myaccount [GET] UPDATE /myaccount [PUT]
*
From source file com.pkrete.locationservice.admin.controller.rest.v1.MyOwnerRestController.java
/**
* This class provides REST API to users for accessing their own organization's
* settings. Users can read and update the settings.
*
* READ /myowner [GET] UPDATE /myowner [PUT]
*
From source file com.pkrete.locationservice.admin.controller.rest.v1.SubjectMattersRestController.java
/**
* This class provides REST API to SubjectMatter objects. This class implements
* create, read, update, delete and list all subject matter functions.
*
* INDEX /subjectmatters [GET] CREATE /subjectmatters [POST] READ
* /subjectmatters/{id} [GET] UPDATE /subjectmatters/{id} [PUT] DELETE
From source file com.pkrete.locationservice.admin.controller.rest.v1.OwnersRestController.java
/**
* This class provides REST API to Owner objects. This class implements create,
* read, update, delete and list all owners functions.
*
* INDEX /owners [GET] CREATE /owners [POST] READ /owners/{id} [GET] UPDATE
* /owners/{id} [PUT] DELETE /owners/{id} [DELETE] READ /owners/{id}/settings
From source file com.pkrete.locationservice.admin.controller.rest.v1.LanguagesRestController.java
/**
* This class provides REST API to Language objects. This class implements
* create, read, update, delete and list all languages functions.
*
* INDEX /languages [GET] CREATE /languages [POST] ?templates=true|false
* OPTIONAL READ /languages/{id} [GET] UPDATE /languages/{id} [PUT] DELETE