Package br.com.caelum.vraptor.resource

Examples of br.com.caelum.vraptor.resource.DefaultResourceMethod


    String webMethod = request.getParameter("webMethod");
    String typeName = type.apply("webLogic", webLogic);
    try {
      DefaultResourceClass resource = new DefaultResourceClass(Class.forName(typeName));
      Method resourceMethod = method(resource.getType(), this.method.apply("webMethod", webMethod));
      return new DefaultResourceMethod(resource, resourceMethod);
    } catch (ClassNotFoundException e) {
      logger.debug("Unable to find type " + typeName + " for strategy " + this);
      throw new IllegalStateException("You must call canHandle before calling this method");
    }
  }
View Full Code Here

TOP

Related Classes of br.com.caelum.vraptor.resource.DefaultResourceMethod

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.