@Retention(value=CLASS) @Target(value=METHOD) public @interface Head
Use on methods in Rest annotated class to add a new rest service of
type OPTIONS.
This annotation as the same constraints as Get but it MUST return
HttpHeaders
Example :
@Rest(rootUrl = "http://myserver", converters = MappingJacksonHttpMessageConverter.class)
public interface MyRestClient {
@Head("/events")
HttpHeaders getEventHeader();
@Head("/events/{year}/{location}")
HttpHeaders getEventHeader2(String location, int year);
}
public abstract String value
Copyright © 2010-2015. All Rights Reserved.