Package org.wicketstuff.rest.utils.wicket

Examples of org.wicketstuff.rest.utils.wicket.AttributesWrapper


   *            the Attribute object of the current request
   */
  @Override
  public final void respond(Attributes attributes)
  {
    AttributesWrapper attributesWrapper = new AttributesWrapper(attributes);
    WebResponse response = attributesWrapper.getWebResponse();
    HttpMethod httpMethod = attributesWrapper.getHttpMethod();

    // select the best "candidate" method to serve the request
    ScoreMethodAndExtractPathVars mappedMethod = selectMostSuitedMethod(attributesWrapper);

    if (mappedMethod != null)
View Full Code Here

TOP

Related Classes of org.wicketstuff.rest.utils.wicket.AttributesWrapper

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.