Package br.com.mystudies.ds.security

Source Code of br.com.mystudies.ds.security.ServiceSimpleFactory

package br.com.mystudies.ds.security;

import net.sf.cglib.proxy.Enhancer;
import br.co.mystudies.ds.service.impl.ServiceImpl;
import br.com.mystudies.ds.service.Service;

public class ServiceSimpleFactory implements ServiceFactory{


  @Override
  public Service getService(User user) {

    ServiceImplProxy proxy = new ServiceImplProxy(new ServiceImpl(),user);

    Enhancer enhancer = new Enhancer();
    enhancer.setSuperclass(Service.class);
    enhancer.setCallback(proxy);

    return (Service) enhancer.create();
  }
}
TOP

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

TOP
Copyright © 2018 www.massapi.com. 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.