Package restx.factory

Source Code of restx.factory.FactoryAdminModule

package restx.factory;

import restx.admin.AdminPage;

import javax.inject.Named;

/**
* User: xavierhanin
* Date: 4/7/13
* Time: 2:59 PM
*/
@Module
public class FactoryAdminModule {
    @Provides @Named("Factory")
    public AdminPage getFactoryAdminPage() {
        return new AdminPage("/@/ui/factory/", "Factory");
    }
}
TOP

Related Classes of restx.factory.FactoryAdminModule

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.