Skip navigation links
A B C D F G H I M O P Q R S T U V W 

A

AbstractApiController<T extends Model<ID>,ID extends Serializable> - Class in org.oncoblocks.centromere.web.controller
Base abstract implementation of WebServicesController for GET, HEAD, and OPTIONS requests.
AbstractApiController(RepositoryOperations<T, ID>, Class<T>, ResourceAssemblerSupport<T, FilterableResource>) - Constructor for class org.oncoblocks.centromere.web.controller.AbstractApiController
 
ACCEPTED_MEDIA_TYPE_VALUES - Static variable in class org.oncoblocks.centromere.web.util.ApiMediaTypes
 
ACCEPTED_MEDIA_TYPES - Static variable in class org.oncoblocks.centromere.web.util.ApiMediaTypes
 
addFormatters(FormatterRegistry) - Method in class org.oncoblocks.centromere.web.config.WebServicesConfig
 
addResourceHandlers(ResourceHandlerRegistry) - Method in class org.oncoblocks.centromere.web.config.WebServicesConfig
 
api() - Method in class org.oncoblocks.centromere.web.config.SwaggerConfig
 
ApiMediaTypes - Class in org.oncoblocks.centromere.web.util
Support class for defining and identifying HAL-supporting MediaType values, which will trigger Spring HATEOAS hypermedia annotation.
ApiMediaTypes() - Constructor for class org.oncoblocks.centromere.web.util.ApiMediaTypes
 
ApiTokenAuthenticationConfig() - Constructor for class org.oncoblocks.centromere.web.config.WebSecurityConfig.ApiTokenAuthenticationConfig
 
APPLICATION_HAL_JSON - Static variable in class org.oncoblocks.centromere.web.util.ApiMediaTypes
 
APPLICATION_HAL_JSON_VALUE - Static variable in class org.oncoblocks.centromere.web.util.ApiMediaTypes
 
APPLICATION_HAL_XML - Static variable in class org.oncoblocks.centromere.web.util.ApiMediaTypes
 
APPLICATION_HAL_XML_VALUE - Static variable in class org.oncoblocks.centromere.web.util.ApiMediaTypes
 
authenticationTokenProcessingFilter() - Method in class org.oncoblocks.centromere.web.config.WebSecurityConfig.ApiTokenAuthenticationConfig
 
AuthenticationTokenProcessingFilter - Class in org.oncoblocks.centromere.web.security
Authenticates user requests using a previously generated TokenDetails.
AuthenticationTokenProcessingFilter(TokenOperations, UserDetailsService) - Constructor for class org.oncoblocks.centromere.web.security.AuthenticationTokenProcessingFilter
 
AutoConfigureApiDocumentation - Annotation Type in org.oncoblocks.centromere.web.config
Automatically enables REST API documentation features.
AutoConfigureWebSecurity - Annotation Type in org.oncoblocks.centromere.web.config
Automatically enables basic security configuration.
AutoConfigureWebServices - Annotation Type in org.oncoblocks.centromere.web.config
Enables default configuration of many of the required web application components, including web request handling, exception handling, message converters, CORS support, and property mapping.

B

BasicTokenUtils - Class in org.oncoblocks.centromere.web.security
Simple implementation of TokenOperations that creates a user authentication token from hashed credentials and authentication time stamps.
BasicTokenUtils(String) - Constructor for class org.oncoblocks.centromere.web.security.BasicTokenUtils
 
BasicWebSecurtiyConfig() - Constructor for class org.oncoblocks.centromere.web.config.WebSecurityConfig.BasicWebSecurtiyConfig
 

C

CentromereWebPropertiesConfig - Class in org.oncoblocks.centromere.web.config
Sets default application parameters, as defined in centromere-defaults.properties.
CentromereWebPropertiesConfig() - Constructor for class org.oncoblocks.centromere.web.config.CentromereWebPropertiesConfig
 
computeSignature(UserDetails, long) - Method in class org.oncoblocks.centromere.web.security.BasicTokenUtils
computeSignature(UserDetails, long) - Method in interface org.oncoblocks.centromere.web.security.TokenOperations
Creates the hash of user credentials and token expiration timestamp.
configure(HttpSecurity) - Method in class org.oncoblocks.centromere.web.config.WebSecurityConfig.ApiTokenAuthenticationConfig
 
configure(HttpSecurity) - Method in class org.oncoblocks.centromere.web.config.WebSecurityConfig.BasicWebSecurtiyConfig
 
configureContentNegotiation(ContentNegotiationConfigurer) - Method in class org.oncoblocks.centromere.web.config.WebServicesConfig
 
configureGlobal(AuthenticationManagerBuilder) - Method in class org.oncoblocks.centromere.web.config.WebSecurityConfig
 
configureMessageConverters(List<HttpMessageConverter<?>>) - Method in class org.oncoblocks.centromere.web.config.WebServicesConfig
 
convert(String) - Method in class org.oncoblocks.centromere.web.util.StringToAttributeConverter
 
convert(String) - Method in class org.oncoblocks.centromere.web.util.StringToSourcedAliasConverter
 
convertParameter(Object, Class<?>, ConversionService) - Static method in class org.oncoblocks.centromere.web.controller.RequestUtils
Converts an object into the appropriate type defined by the model field being queried.
convertParameter(Object, Class<?>) - Static method in class org.oncoblocks.centromere.web.controller.RequestUtils
 
convertParameterArray(Object[], Class<?>) - Static method in class org.oncoblocks.centromere.web.controller.RequestUtils
Converts an array of objects into the appropriate type defined by the model field being queried
corsFilter() - Method in class org.oncoblocks.centromere.web.config.WebServicesConfig
 
CorsFilter - Class in org.oncoblocks.centromere.web.util
Simple filter for enabling cross-origin requests.
CorsFilter() - Constructor for class org.oncoblocks.centromere.web.util.CorsFilter
 
create(T, HttpServletRequest) - Method in class org.oncoblocks.centromere.web.controller.CrudApiController
POST / Attempts to create a new record using the submitted entity.
create(T, HttpServletRequest) - Method in class org.oncoblocks.centromere.web.controller.ReadOnlyApiController
POST / Attempts to create a new record using the submitted entity.
create(T, HttpServletRequest) - Method in interface org.oncoblocks.centromere.web.controller.WebServicesController
POST / - Attempts to create a new entity record.
createCriteriaFromRequestParameter(String, Object[], Class<?>, Evaluation) - Static method in class org.oncoblocks.centromere.web.controller.RequestUtils
Creates a QueryCriteria object based upon a request parameter and Evaluation value.
createToken(UserDetails) - Method in class org.oncoblocks.centromere.web.security.BasicTokenUtils
createToken(UserDetails) - Method in interface org.oncoblocks.centromere.web.security.TokenOperations
Generates a string token from the submitted UserDetails
createTokenAndDetails(UserDetails) - Method in class org.oncoblocks.centromere.web.security.BasicTokenUtils
Creates a TokenDetails object, based upon submitted UserDetails.
CrudApiController<T extends Model<ID>,ID extends Serializable> - Class in org.oncoblocks.centromere.web.controller
Extension of AbstractApiController that allows for PUT, POST, and DELETE operations.
CrudApiController(RepositoryOperations<T, ID>, Class<T>, ResourceAssemblerSupport<T, FilterableResource>) - Constructor for class org.oncoblocks.centromere.web.controller.CrudApiController
 

D

delete(ID, HttpServletRequest) - Method in class org.oncoblocks.centromere.web.controller.CrudApiController
DELETE /{id} Attempts to delete the an entity identified by the submitted primary ID.
delete(ID, HttpServletRequest) - Method in class org.oncoblocks.centromere.web.controller.ReadOnlyApiController
DELETE /{id} Attempts to delete the an entity identified by the submitted primary ID.
delete(ID, HttpServletRequest) - Method in interface org.oncoblocks.centromere.web.controller.WebServicesController
DELETE /{id} - Attempts to delete a single entity record.
destroy() - Method in class org.oncoblocks.centromere.web.util.CorsFilter
 
DisabledEndpointException - Exception in org.oncoblocks.centromere.web.exceptions
 
DisabledEndpointException() - Constructor for exception org.oncoblocks.centromere.web.exceptions.DisabledEndpointException
 
doFilter(ServletRequest, ServletResponse, FilterChain) - Method in class org.oncoblocks.centromere.web.security.AuthenticationTokenProcessingFilter
 
doFilter(ServletRequest, ServletResponse, FilterChain) - Method in class org.oncoblocks.centromere.web.util.CorsFilter
 

F

FilterableResource<T> - Class in org.oncoblocks.centromere.web.controller
Allows filtering of the 'links' attribute using FilteringJackson2HttpMessageConverter
FilterableResource(T, Link...) - Constructor for class org.oncoblocks.centromere.web.controller.FilterableResource
 
FilterableResource(T, Iterable<Link>) - Constructor for class org.oncoblocks.centromere.web.controller.FilterableResource
 
FilteringJackson2HttpMessageConverter - Class in org.oncoblocks.centromere.web.util
Uses ResponseEnvelope to identify filterable entities and filters or includes fields based upon request parameters.
FilteringJackson2HttpMessageConverter() - Constructor for class org.oncoblocks.centromere.web.util.FilteringJackson2HttpMessageConverter
 
FilteringTextMessageConverter - Class in org.oncoblocks.centromere.web.util
Message converter that takes web service response data and converts it to delimited-text in a tabular format.
FilteringTextMessageConverter(MediaType, String) - Constructor for class org.oncoblocks.centromere.web.util.FilteringTextMessageConverter
 
FilteringTextMessageConverter(MediaType) - Constructor for class org.oncoblocks.centromere.web.util.FilteringTextMessageConverter
 
find(Pageable, PagedResourcesAssembler<T>, HttpServletRequest) - Method in class org.oncoblocks.centromere.web.controller.AbstractApiController
Queries the repository using inputted query string paramters, defined within a annotated Model classes.
find(Pageable, PagedResourcesAssembler<T>, HttpServletRequest) - Method in interface org.oncoblocks.centromere.web.controller.WebServicesController
GET / - Fetches one or more records, with optional filtering, paging, or sorting applied.
findById(ID, HttpServletRequest) - Method in class org.oncoblocks.centromere.web.controller.AbstractApiController
GET /{id} Fetches a single record by its primary ID and returns it, or a Not Found exception if not.
findById(ID, HttpServletRequest) - Method in interface org.oncoblocks.centromere.web.controller.WebServicesController
GET /{id} - Fetches a single record by its primary ID.
findDistinct(String, HttpServletRequest) - Method in class org.oncoblocks.centromere.web.controller.AbstractApiController
GET /distinct Fetches the distinct values of the model attribute, field, which fulfill the given query parameters.
findDistinct(String, HttpServletRequest) - Method in interface org.oncoblocks.centromere.web.controller.WebServicesController
GET /distinct - Fetches a list of distinct field values.

G

getAssembler() - Method in class org.oncoblocks.centromere.web.controller.AbstractApiController
 
getAvailableQueryParameters(Class<? extends Model<?>>) - Static method in class org.oncoblocks.centromere.web.controller.RequestUtils
Inspects a Model class and returns all of the available and acceptable query parameter definitions, as a map of parameter names and QueryParameterDescriptor objects.
getCode() - Method in class org.oncoblocks.centromere.web.exceptions.RestError
 
getCode() - Method in exception org.oncoblocks.centromere.web.exceptions.RestException
 
getDeveloperMessage() - Method in class org.oncoblocks.centromere.web.exceptions.RestError
 
getDeveloperMessage() - Method in exception org.oncoblocks.centromere.web.exceptions.RestException
 
getEntity() - Method in class org.oncoblocks.centromere.web.controller.ResponseEnvelope
 
getEntityLinks() - Method in class org.oncoblocks.centromere.web.controller.ModelResourceAssembler
 
getExclude() - Method in class org.oncoblocks.centromere.web.controller.ResponseEnvelope
 
getExcludedFieldsFromRequest(HttpServletRequest) - Static method in class org.oncoblocks.centromere.web.controller.RequestUtils
Extracts the requested filtered fields parameter from a request.
getExpires() - Method in class org.oncoblocks.centromere.web.security.TokenDetails
 
getFieldSet() - Method in class org.oncoblocks.centromere.web.controller.ResponseEnvelope
 
getFilteredFieldsFromRequest(HttpServletRequest) - Static method in class org.oncoblocks.centromere.web.controller.RequestUtils
Extracts the requested filtered fields parameter from a request.
getHalMediaTypes() - Static method in class org.oncoblocks.centromere.web.util.ApiMediaTypes
 
getHalMediaTypeValues() - Static method in class org.oncoblocks.centromere.web.util.ApiMediaTypes
 
getIssued() - Method in class org.oncoblocks.centromere.web.security.TokenDetails
 
getJsonMediaTypes() - Static method in class org.oncoblocks.centromere.web.util.ApiMediaTypes
 
getMessage() - Method in class org.oncoblocks.centromere.web.exceptions.RestError
 
getMessage() - Method in exception org.oncoblocks.centromere.web.exceptions.RestException
 
getModel() - Method in class org.oncoblocks.centromere.web.controller.AbstractApiController
 
getModel() - Method in class org.oncoblocks.centromere.web.controller.ModelResourceAssembler
 
getModelController() - Method in class org.oncoblocks.centromere.web.controller.ModelResourceAssembler
 
getMoreInfoUrl() - Method in class org.oncoblocks.centromere.web.exceptions.RestError
 
getMoreInfoUrl() - Method in exception org.oncoblocks.centromere.web.exceptions.RestException
 
getQueryCriteriaFromRequest(Class<? extends Model<?>>, HttpServletRequest) - Static method in class org.oncoblocks.centromere.web.controller.RequestUtils
Extracts request parameters and matches them to available database query parameters, as defined in the model class definition.
getRepository() - Method in class org.oncoblocks.centromere.web.controller.AbstractApiController
 
getRestError() - Method in exception org.oncoblocks.centromere.web.exceptions.RestException
 
getStatus() - Method in class org.oncoblocks.centromere.web.exceptions.RestError
 
getStatus() - Method in exception org.oncoblocks.centromere.web.exceptions.RestException
 
getToken() - Method in class org.oncoblocks.centromere.web.security.TokenDetails
 
getUsername() - Method in class org.oncoblocks.centromere.web.security.TokenDetails
 
getUserNameFromToken(String) - Method in class org.oncoblocks.centromere.web.security.BasicTokenUtils
getUserNameFromToken(String) - Method in interface org.oncoblocks.centromere.web.security.TokenOperations
Returns the username portion of a submitted authentication token
getXmlMediaTypes() - Static method in class org.oncoblocks.centromere.web.util.ApiMediaTypes
 

H

handleRestException(RestException, WebRequest) - Method in class org.oncoblocks.centromere.web.exceptions.RestExceptionHandler
Catches a RestException thrown bt a web service controller and returns an informative message.
head(HttpServletRequest) - Method in class org.oncoblocks.centromere.web.controller.AbstractApiController
HEAD /** Performs a test on the resource endpoints availability.
head(HttpServletRequest) - Method in interface org.oncoblocks.centromere.web.controller.WebServicesController
HEAD /** - Tests whether the URL endpoint is available.

I

init(FilterConfig) - Method in class org.oncoblocks.centromere.web.util.CorsFilter
 
InvalidParameterException - Exception in org.oncoblocks.centromere.web.exceptions
Exception thrown by invalid query string parameters for GET request queries.
InvalidParameterException(String) - Constructor for exception org.oncoblocks.centromere.web.exceptions.InvalidParameterException
 
isHalMediaType(String) - Static method in class org.oncoblocks.centromere.web.util.ApiMediaTypes
 
isHalMediaType(MediaType) - Static method in class org.oncoblocks.centromere.web.util.ApiMediaTypes
 

M

MalformedEntityException - Exception in org.oncoblocks.centromere.web.exceptions
406 error
MalformedEntityException(Integer, String, String, String) - Constructor for exception org.oncoblocks.centromere.web.exceptions.MalformedEntityException
 
MethodNotAllowedException - Exception in org.oncoblocks.centromere.web.exceptions
 
MethodNotAllowedException() - Constructor for exception org.oncoblocks.centromere.web.exceptions.MethodNotAllowedException
 
ModelResourceAssembler<T extends Model<?>> - Class in org.oncoblocks.centromere.web.controller
Extension of Spring HATEOAS's ResourceAssemblerSupport, which automatically builds self links, based upon the Model class's `getId()` method signature, and by inferring related models by fields annotated with ForeignKey.
ModelResourceAssembler(Class<?>, Class<T>, EntityLinks) - Constructor for class org.oncoblocks.centromere.web.controller.ModelResourceAssembler
 

O

options(HttpServletRequest) - Method in class org.oncoblocks.centromere.web.controller.AbstractApiController
OPTIONS / Returns an information about the endpoint and available parameters.
options(HttpServletRequest) - Method in interface org.oncoblocks.centromere.web.controller.WebServicesController
OPTIONS /** - Returns basic request information about URL the endpoint.
org.oncoblocks.centromere.web.config - package org.oncoblocks.centromere.web.config
 
org.oncoblocks.centromere.web.controller - package org.oncoblocks.centromere.web.controller
 
org.oncoblocks.centromere.web.exceptions - package org.oncoblocks.centromere.web.exceptions
 
org.oncoblocks.centromere.web.security - package org.oncoblocks.centromere.web.security
 
org.oncoblocks.centromere.web.util - package org.oncoblocks.centromere.web.util
 

P

ParameterMappingException - Exception in org.oncoblocks.centromere.web.exceptions
 
ParameterMappingException(String, String) - Constructor for exception org.oncoblocks.centromere.web.exceptions.ParameterMappingException
 

Q

QueryParsingException - Exception in org.oncoblocks.centromere.web.exceptions
Thrown when a web service query fails to correctly parse into a WebServiceQuery object.
QueryParsingException(String) - Constructor for exception org.oncoblocks.centromere.web.exceptions.QueryParsingException
 

R

readInternal(Class<?>, HttpInputMessage) - Method in class org.oncoblocks.centromere.web.util.FilteringTextMessageConverter
 
ReadOnlyApiController<T extends Model<ID>,ID extends Serializable> - Class in org.oncoblocks.centromere.web.controller
Extension of AbstractApiController that throws a MethodNotAllowedException when POST, PUT, or DELETE operations are attempted.
ReadOnlyApiController(RepositoryOperations<T, ID>, Class<T>, ResourceAssemblerSupport<T, FilterableResource>) - Constructor for class org.oncoblocks.centromere.web.controller.ReadOnlyApiController
 
remapPageable(Pageable, Class<? extends Model<?>>) - Static method in class org.oncoblocks.centromere.web.controller.RequestUtils
Uses annotated Model class definitions to remap any request attribute names in a Pageable so that they match repository attribute names.
remapParameterName(String, Class<? extends Model<?>>) - Static method in class org.oncoblocks.centromere.web.controller.RequestUtils
Checks a request parameter name against all possible Model attributes, converting it to the appropriate repository field name for querying and sorting.
RequestFailureException - Exception in org.oncoblocks.centromere.web.exceptions
Generic 400 error
RequestFailureException(Integer, String, String, String) - Constructor for exception org.oncoblocks.centromere.web.exceptions.RequestFailureException
 
RequestUtils - Class in org.oncoblocks.centromere.web.controller
Helper methods for processing API controller requests.
RequestUtils() - Constructor for class org.oncoblocks.centromere.web.controller.RequestUtils
 
ResourceNotFoundException - Exception in org.oncoblocks.centromere.web.exceptions
404 error when a single resource request returns null
ResourceNotFoundException() - Constructor for exception org.oncoblocks.centromere.web.exceptions.ResourceNotFoundException
 
ResponseEnvelope - Class in org.oncoblocks.centromere.web.controller
Wrapper for GET request responses to allow for field filtering via FilteringJackson2HttpMessageConverter
ResponseEnvelope(Object) - Constructor for class org.oncoblocks.centromere.web.controller.ResponseEnvelope
 
ResponseEnvelope(Object, Set<String>, Set<String>) - Constructor for class org.oncoblocks.centromere.web.controller.ResponseEnvelope
 
RestError - Class in org.oncoblocks.centromere.web.exceptions
Simple representation of a web services exception.
RestError(HttpStatus, Integer, String, String, String) - Constructor for class org.oncoblocks.centromere.web.exceptions.RestError
 
RestException - Exception in org.oncoblocks.centromere.web.exceptions
Base exception class for web services.
RestException(HttpStatus, Integer, String, String, String) - Constructor for exception org.oncoblocks.centromere.web.exceptions.RestException
 
RestExceptionHandler - Class in org.oncoblocks.centromere.web.exceptions
Exception handler for RestException errors.
RestExceptionHandler() - Constructor for class org.oncoblocks.centromere.web.exceptions.RestExceptionHandler
 

S

servletContainerCustomizer() - Method in class org.oncoblocks.centromere.web.config.WebServicesConfig
 
setApplicationContext(ApplicationContext) - Method in class org.oncoblocks.centromere.web.controller.AbstractApiController
 
setCode(Integer) - Method in exception org.oncoblocks.centromere.web.exceptions.RestException
 
setDelimiter(String) - Method in class org.oncoblocks.centromere.web.util.FilteringTextMessageConverter
 
setDeveloperMessage(String) - Method in exception org.oncoblocks.centromere.web.exceptions.RestException
 
setExclude(Set<String>) - Method in class org.oncoblocks.centromere.web.controller.ResponseEnvelope
 
setExpires(Date) - Method in class org.oncoblocks.centromere.web.security.TokenDetails
 
setFields(String) - Method in class org.oncoblocks.centromere.web.controller.ResponseEnvelope
 
setFieldSet(Set<String>) - Method in class org.oncoblocks.centromere.web.controller.ResponseEnvelope
 
setIssued(Date) - Method in class org.oncoblocks.centromere.web.security.TokenDetails
 
setMessage(String) - Method in exception org.oncoblocks.centromere.web.exceptions.RestException
 
setMoreInfoUrl(String) - Method in exception org.oncoblocks.centromere.web.exceptions.RestException
 
setPrefixJson(boolean) - Method in class org.oncoblocks.centromere.web.util.FilteringJackson2HttpMessageConverter
 
setStatus(HttpStatus) - Method in exception org.oncoblocks.centromere.web.exceptions.RestException
 
setToken(String) - Method in class org.oncoblocks.centromere.web.security.TokenDetails
 
setTokenLifespanDays(Long) - Method in class org.oncoblocks.centromere.web.security.BasicTokenUtils
Sets the lifespan of the token in a time period defined by days.
setTokenLifespanHours(Long) - Method in class org.oncoblocks.centromere.web.security.BasicTokenUtils
Sets the lifespan of the token in a time period defined by hours.
setUsername(String) - Method in class org.oncoblocks.centromere.web.security.TokenDetails
 
StringToAttributeConverter - Class in org.oncoblocks.centromere.web.util
Simple converter for Attribute
StringToAttributeConverter() - Constructor for class org.oncoblocks.centromere.web.util.StringToAttributeConverter
 
StringToSourcedAliasConverter - Class in org.oncoblocks.centromere.web.util
Simple converter for SourcedAlias
StringToSourcedAliasConverter() - Constructor for class org.oncoblocks.centromere.web.util.StringToSourcedAliasConverter
 
supports(Class<?>) - Method in class org.oncoblocks.centromere.web.util.FilteringTextMessageConverter
 
SwaggerConfig - Class in org.oncoblocks.centromere.web.config
Performs configuration for Swagger spec 2.0 API documentation via SpringFox.
SwaggerConfig() - Constructor for class org.oncoblocks.centromere.web.config.SwaggerConfig
 

T

TEXT_PLAIN_UTF8 - Static variable in class org.oncoblocks.centromere.web.util.ApiMediaTypes
 
TEXT_PLAIN_UTF8_VALUE - Static variable in class org.oncoblocks.centromere.web.util.ApiMediaTypes
 
TokenDetails - Class in org.oncoblocks.centromere.web.security
Simple representation of a user authentication token used to verify user credentials in a stateless manner.
TokenDetails() - Constructor for class org.oncoblocks.centromere.web.security.TokenDetails
 
TokenDetails(String, String, Date, Date) - Constructor for class org.oncoblocks.centromere.web.security.TokenDetails
 
TokenOperations - Interface in org.oncoblocks.centromere.web.security
Standard method interface for creating and validating user TokenDetails
tokenUtils() - Method in class org.oncoblocks.centromere.web.config.WebSecurityConfig.ApiTokenAuthenticationConfig
 
toResource(T) - Method in class org.oncoblocks.centromere.web.controller.ModelResourceAssembler
Converts a Model object into a FilterableResource, adding the appropriate links.

U

update(T, ID, HttpServletRequest) - Method in class org.oncoblocks.centromere.web.controller.CrudApiController
PUT /{id} Attempts to update an existing entity record, replacing it with the submitted entity.
update(T, ID, HttpServletRequest) - Method in class org.oncoblocks.centromere.web.controller.ReadOnlyApiController
PUT /{id} Attempts to update an existing entity record, replacing it with the submitted entity.
update(T, ID, HttpServletRequest) - Method in interface org.oncoblocks.centromere.web.controller.WebServicesController
PUT /{id} - Attempts to update an existing entity record.

V

validateToken(String, UserDetails) - Method in class org.oncoblocks.centromere.web.security.BasicTokenUtils
validateToken(String, UserDetails) - Method in interface org.oncoblocks.centromere.web.security.TokenOperations
Checks that the submitted token is valid and returns a boolean verdict

W

WebSecurityConfig - Class in org.oncoblocks.centromere.web.config
Default security configuration for Centromere web services.
WebSecurityConfig() - Constructor for class org.oncoblocks.centromere.web.config.WebSecurityConfig
 
WebSecurityConfig.ApiTokenAuthenticationConfig - Class in org.oncoblocks.centromere.web.config
 
WebSecurityConfig.BasicWebSecurtiyConfig - Class in org.oncoblocks.centromere.web.config
 
WebServicesConfig - Class in org.oncoblocks.centromere.web.config
Default web configuration file for Centromere web services.
WebServicesConfig() - Constructor for class org.oncoblocks.centromere.web.config.WebServicesConfig
 
WebServicesController<T extends Model<ID>,ID extends Serializable> - Interface in org.oncoblocks.centromere.web.controller
Basic interface, defining all of the required methods for a web services controller.
writeInternal(Object, Type, HttpOutputMessage) - Method in class org.oncoblocks.centromere.web.util.FilteringJackson2HttpMessageConverter
 
writeInternal(Object, HttpOutputMessage) - Method in class org.oncoblocks.centromere.web.util.FilteringTextMessageConverter
 
A B C D F G H I M O P Q R S T U V W 
Skip navigation links

Copyright © 2016. All rights reserved.