| java.lang.Object com.sun.jbi.jsf.util.AppVarUtils
AppVarUtils | final public class AppVarUtils (Code) | | This class is used to provide utilitiies for the Component
Application Variable use-cases
|
deleteCompAppVars | public static Properties deleteCompAppVars(String aComponentName, String anInstanceName, String[] anAppVarNamesArray)(Code) | | deletes one or more application variables for the specified component
on the specified target
Parameters: aComponentName - String JBI Component name Parameters: anInstanceName - String instance with target MBean for the component Parameters: anAppVarNamesArray - String[] with one or more names to delete |
getCompAppVars | public static Properties getCompAppVars(String aComponentName, String anInstanceName)(Code) | | Gets the application variables for the specified component
on the specified target
Parameters: aComponentName - String JBI Component name Parameters: anInstanceName - String instance with target MBean for the component |
saveNewCompAppVar | public static Properties saveNewCompAppVar(String aComponentName, String anInstanceName, String anAppVarName, String anAppVarType, String anAppVarValue)(Code) | | Saves a new application variable for the specified component
on the specified target
Parameters: aComponentName - String JBI Component name Parameters: anInstanceName - String instance with target MBean for the component Parameters: anAppVarName - String the new Application Variable name Parameters: anAppVarType - String the new Application Variable type Parameters: anAppVarValue - String the new Application Variable value or null |
update | public static Properties update(String aComponentName, String anInstanceName, Properties aNewAppVarsProps)(Code) | | Saves a new application variable for the specified component
on the specified target
Parameters: aComponentName - String JBI Component name Parameters: anInstanceName - String instance with target MBean for the component Parameters: aNewAppVarsProps - Properties with new name->[type]value properties |
|
|