Package beans.reportgen

Source Code of beans.reportgen.ReportGeneratorRegister

/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/

package beans.reportgen;

import framework.beans.reportgen.ReportEntitySetResource;
import javax.ejb.Stateless;
import reportgen.cores.ejb.CoreFactoryEjb;
import reportgen.prototype.CoreFactoryList;

/**
*
* @author axe
*/
@Stateless(mappedName="clips-beans/ReportGeneratorRegister")
public class ReportGeneratorRegister implements ReportEntitySetResource {

    @Override
    public void init() {
        new CoreFactoryList().register(new CoreFactoryEjb(new IntelClinicReportSet()));
    }

}
TOP

Related Classes of beans.reportgen.ReportGeneratorRegister

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.