Package restx.config

Source Code of restx.config.ConfigAdminModule

package restx.config;

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

import javax.inject.Named;

/**
*/
@Module
public class ConfigAdminModule {
    @Provides @Named("Config")
    public AdminPage getErrorAdminPage() {
        return new AdminPage("/@/ui/config/", "Config");
    }
}
TOP

Related Classes of restx.config.ConfigAdminModule

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.