Package br.com.mystudies.ds.security

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


import br.com.mystudies.ds.service.Service;

public class App{
    public static void main( String[] args ){

      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.ServiceFactory

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.