Package gwtappcontainer.shared.apps.security

Examples of gwtappcontainer.shared.apps.security.RoleProp


  @Index String role;
 
  TreeSet<String> privileges = new TreeSet<String>();
 
  RoleProp toProp() {
    RoleProp prop = new RoleProp();   
    prop.role = role;
    prop.privileges = privileges;   
       
    return prop;
  }
View Full Code Here

TOP

Related Classes of gwtappcontainer.shared.apps.security.RoleProp

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.