Class VCSettingsHelper
- java.lang.Object
-
- de.uplanet.lucy.server.auxiliaries.VCSettingsHelper
-
@VelocityVariable("SettingsHelper") @VelocityCallable("singleton") public final class VCSettingsHelper extends Object
-
-
Constructor Summary
Constructors Constructor Description VCSettingsHelper()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description de.uplanet.lucy.server.util.Setting
getAppSetting(String p_strAppGUID, String p_strSettingName)
Gets a application settingde.uplanet.lucy.server.util.Setting
getControlSetting(String p_strControlGUID, String p_strSettingName)
Gets a control settingde.uplanet.lucy.server.util.Setting
getDataFieldSetting(String p_strFieldGUID, String p_strSettingName)
Gets a data field settingde.uplanet.lucy.server.util.Setting
getDataGroupSetting(String p_strDataGroupGUID, String p_strSettingName)
Gets a data group settingde.uplanet.lucy.server.util.Setting
getDataPickerChildSetting(String p_strDataPickerChildGUID, String p_strSettingName)
Gets a data picker child settingde.uplanet.lucy.server.util.Setting
getDataPickerSetting(String p_strDataPickerGUID, String p_strSettingName)
Gets a data picker settingde.uplanet.lucy.server.util.Setting
getDataRangeChildControlSetting(String p_strChildCtrlGUID, String p_strSettingName)
Gets a datarange child settingde.uplanet.lucy.server.util.Setting
getDataRangeSetting(String p_strDataRangeGUID, String p_strSettingName)
Gets a data range settingde.uplanet.lucy.server.util.Setting
getPageSetting(String p_strPageGUID, String p_strSettingName)
Gets a page setting
-
-
-
Method Detail
-
getAppSetting
public de.uplanet.lucy.server.util.Setting getAppSetting(String p_strAppGUID, String p_strSettingName)
Gets a application setting- Parameters:
p_strAppGUID
- The application GUID (must not benull
)p_strSettingName
- The name of the setting (must not benull
)- Returns:
- The property object or
null
if no property found for the given setting
-
getDataGroupSetting
public de.uplanet.lucy.server.util.Setting getDataGroupSetting(String p_strDataGroupGUID, String p_strSettingName)
Gets a data group setting- Parameters:
p_strDataGroupGUID
- The data group GUID (must not benull
)p_strSettingName
- The name of the setting (must not benull
)- Returns:
- The property object or
null
if no property found for the given setting
-
getDataFieldSetting
public de.uplanet.lucy.server.util.Setting getDataFieldSetting(String p_strFieldGUID, String p_strSettingName)
Gets a data field setting- Parameters:
p_strFieldGUID
- The field GUID (must not benull
)p_strSettingName
- The name of the setting (must not benull
)- Returns:
- The property object or
null
if no property found for the given setting
-
getPageSetting
public de.uplanet.lucy.server.util.Setting getPageSetting(String p_strPageGUID, String p_strSettingName)
Gets a page setting- Parameters:
p_strPageGUID
- The page GUID (must not benull
)p_strSettingName
- The name of the setting (must not benull
)- Returns:
- The property object or
null
if no property found for the given setting
-
getControlSetting
public de.uplanet.lucy.server.util.Setting getControlSetting(String p_strControlGUID, String p_strSettingName)
Gets a control setting- Parameters:
p_strControlGUID
- The control GUID (must not benull
)p_strSettingName
- The name of the setting (must not benull
)- Returns:
- The property object or
null
if no property found for the given setting
-
getDataRangeChildControlSetting
public de.uplanet.lucy.server.util.Setting getDataRangeChildControlSetting(String p_strChildCtrlGUID, String p_strSettingName)
Gets a datarange child setting- Parameters:
p_strChildCtrlGUID
- The data range child GUID (must not benull
)p_strSettingName
- The name of the setting (must not benull
)- Returns:
- The property object or
null
if no property found for the given setting
-
getDataRangeSetting
public de.uplanet.lucy.server.util.Setting getDataRangeSetting(String p_strDataRangeGUID, String p_strSettingName)
Gets a data range setting- Parameters:
p_strDataRangeGUID
- The data range GUID (must not benull
)p_strSettingName
- The name of the setting (must not benull
)- Returns:
- The property object or
null
if no property found for the given setting
-
getDataPickerSetting
public de.uplanet.lucy.server.util.Setting getDataPickerSetting(String p_strDataPickerGUID, String p_strSettingName)
Gets a data picker setting- Parameters:
p_strDataPickerGUID
- The data picker GUID (must not benull
)p_strSettingName
- The name of the setting (must not benull
)- Returns:
- The property object or
null
if no property found for the given setting
-
getDataPickerChildSetting
public de.uplanet.lucy.server.util.Setting getDataPickerChildSetting(String p_strDataPickerChildGUID, String p_strSettingName)
Gets a data picker child setting- Parameters:
p_strDataPickerChildGUID
- The datpicker child control GUID (must not benull
)p_strSettingName
- The name of the setting (must not benull
)- Returns:
- The property object or
null
if no property found for the given setting
-
-