Package com.rupertjones.globalcron.common.domain

Examples of com.rupertjones.globalcron.common.domain.Setting


    private Setting setting = null;

    @Before
    public void before() {
        setting = new Setting();
        setting.setValue("^(?=.*[A-Za-z])(?=.*\\d)(.{8,})$");
    }
View Full Code Here


    @Autowired
    private SettingsService service;

    @Test
    public void test_get_setting_by_type() {
        Setting setting = service.find(SettingType.ALLOW_AD_HOC_EXECUTION);
        assertNotNull(setting);
        assertEquals("true", setting.getValue());
    }
View Full Code Here

        return settingDAO.findAll();
    }

    @Override
    public Object getSettingValue(SettingType type) {
        Setting setting = find(type);
        return TypeConverter.convert(setting.getValue(), setting.getValueTypeAsClass());
    }
View Full Code Here

TOP

Related Classes of com.rupertjones.globalcron.common.domain.Setting

Copyright © 2018 www.massapicom. 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.