Package org.cruxframework.crux.core.server.rest.annotation.RestService

Examples of org.cruxframework.crux.core.server.rest.annotation.RestService.CorsSupport


          "can not be void.", "Can not execute requested service");
    }

    this.methodInvoker = new MethodInvoker(resourceClass, method, httpMethod);
    this.cacheInfo = HttpMethodHelper.getCacheInfoForGET(method);
    CorsSupport corsSupport = method.getAnnotation(CorsSupport.class);
    if (corsSupport == null)
    {
      corsSupport = resourceClass.getAnnotation(CorsSupport.class);     
    }
    this.corsData = CorsData.parseCorsData(corsSupport);
View Full Code Here

TOP

Related Classes of org.cruxframework.crux.core.server.rest.annotation.RestService.CorsSupport

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.