Package org.springframework.messaging.handler.annotation

Examples of org.springframework.messaging.handler.annotation.Header


    return parameter.hasParameterAnnotation(Header.class);
  }

  @Override
  protected NamedValueInfo createNamedValueInfo(MethodParameter parameter) {
    Header annotation = parameter.getParameterAnnotation(Header.class);
    return new HeaderNamedValueInfo(annotation);
  }
View Full Code Here

TOP

Related Classes of org.springframework.messaging.handler.annotation.Header

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.