Package br.com.mystudies.ds.security

Examples of br.com.mystudies.ds.security.User


      ServiceFactory sf = new ServiceSimpleFactory();

      //--------------------------------------------

      User user = new User();
      user.setGroup(Group.ADMINISTRATORS);

      Service service = sf.getService(user);

      System.out.println(service.execute());


      //----------------------------------------

      user.setGroup(Group.PROGRAMMERS);

      service = sf.getService(user);

      System.out.println(service.execute());
View Full Code Here

TOP

Related Classes of br.com.mystudies.ds.security.User

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.