Package com.linkedin.restli.server.annotations

Examples of com.linkedin.restli.server.annotations.HeaderParam


        continue; // don't know what to fill in yet
      }

      else if (param.getParamType() == Parameter.ParamType.HEADER)
      {
        HeaderParam headerParam = param.getAnnotations().get(HeaderParam.class);
        String value = context.getRequestHeaders().get(headerParam.value());
        arguments[i] = value;
      }

      //Since we have multiple different types of MaskTrees that can be passed into resource methods,
      //we must evaluate based on the param type (annotation used)
View Full Code Here

TOP

Related Classes of com.linkedin.restli.server.annotations.HeaderParam

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.