Package com.cosmo.security.annotations

Examples of com.cosmo.security.annotations.ActivitiesAllowed


    *
    * @return Un array de identificadores de actividad.
    */
   private ArrayList<String> getActivitiesAllowed(Page page)
   {
      ActivitiesAllowed aa;
      ArrayList<String> list;

      list = new ArrayList<String>();
      aa = page.getClass().getAnnotation(ActivitiesAllowed.class);

      for (String str : aa.value())
      {
         list.add(str);
      }

      return list;
View Full Code Here

TOP

Related Classes of com.cosmo.security.annotations.ActivitiesAllowed

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.