Package org.eweb4j.mvc.action.annotation

Examples of org.eweb4j.mvc.action.annotation.Singleton


      }
     
      inter.setPolicy(interAnn.policy());
      inter.setType(interAnn.type());
      inter.setPriority(String.valueOf(interAnn.priority()));
      Singleton sin = cls.getAnnotation(Singleton.class);
      if (sin != null)
        inter.setScope("singleton");
      else
        inter.setScope("prototype");
     
View Full Code Here

TOP

Related Classes of org.eweb4j.mvc.action.annotation.Singleton

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.