Package restx.monitor

Source Code of restx.monitor.MonitorAdminModule

package restx.monitor;

import restx.admin.AdminPage;
import restx.factory.Module;
import restx.factory.Provides;

import javax.inject.Named;

/**
* User: xavierhanin
* Date: 4/7/13
* Time: 2:59 PM
*/
@Module
public class MonitorAdminModule {
    @Provides
        @Named("Monitor")
    public AdminPage getMonitorAdminPage() {
        return new AdminPage("/@/ui/monitor/", "Monitor");
    }

}
TOP

Related Classes of restx.monitor.MonitorAdminModule

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.