Java Code Examples for org.springframework.web.bind.annotation.RequestHeader#name()

The following examples show how to use org.springframework.web.bind.annotation.RequestHeader#name() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: RequestHeaderAnnotationProcessor.java    From servicecomb-toolkit with Apache License 2.0 6 votes vote down vote up
@Override
public void process(RequestHeader requestHeader, ParameterContext parameterContext) {
  parameterContext.setIn(InType.HEADER);
  parameterContext.setRequired(requestHeader.required());

  if (!ObjectUtils.isEmpty(requestHeader.defaultValue()) && !ValueConstants.DEFAULT_NONE
      .equals(requestHeader.defaultValue())) {
    parameterContext.setDefaultValue(requestHeader.defaultValue());
  }

  String name = requestHeader.name();
  if (StringUtils.isEmpty(name)) {
    name = requestHeader.value();
  }

  parameterContext.setName(name);
}
 
Example 2
Source File: RequestHeaderAnnotationProcessor.java    From servicecomb-java-chassis with Apache License 2.0 5 votes vote down vote up
@Override
public String getParameterName(RequestHeader annotation) {
  String value = annotation.value();
  if (value.isEmpty()) {
    value = annotation.name();
  }
  return value;
}
 
Example 3
Source File: RequestHeaderMethodArgumentResolver.java    From spring-analysis-note with MIT License 4 votes vote down vote up
private RequestHeaderNamedValueInfo(RequestHeader annotation) {
	super(annotation.name(), annotation.required(), annotation.defaultValue());
}
 
Example 4
Source File: RequestHeaderMethodArgumentResolver.java    From spring-analysis-note with MIT License 4 votes vote down vote up
private RequestHeaderNamedValueInfo(RequestHeader annotation) {
	super(annotation.name(), annotation.required(), annotation.defaultValue());
}
 
Example 5
Source File: RequestHeaderMethodArgumentResolver.java    From java-technology-stack with MIT License 4 votes vote down vote up
private RequestHeaderNamedValueInfo(RequestHeader annotation) {
	super(annotation.name(), annotation.required(), annotation.defaultValue());
}
 
Example 6
Source File: RequestHeaderMethodArgumentResolver.java    From java-technology-stack with MIT License 4 votes vote down vote up
private RequestHeaderNamedValueInfo(RequestHeader annotation) {
	super(annotation.name(), annotation.required(), annotation.defaultValue());
}
 
Example 7
Source File: RequestHeaderMethodArgumentResolver.java    From lams with GNU General Public License v2.0 4 votes vote down vote up
private RequestHeaderNamedValueInfo(RequestHeader annotation) {
	super(annotation.name(), annotation.required(), annotation.defaultValue());
}
 
Example 8
Source File: RequestHeaderMethodArgumentResolver.java    From spring4-understanding with Apache License 2.0 4 votes vote down vote up
private RequestHeaderNamedValueInfo(RequestHeader annotation) {
	super(annotation.name(), annotation.required(), annotation.defaultValue());
}