|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface ConfigProps
The BW activity configuration model, which is represented as a bag of typed properties. Each activity advertises the set of properties that are available and for each property its associated type.
This interface is also used to represent configuration properties of complex types as well as configuration properties of shared resources.
Method Summary | |
---|---|
boolean |
getPropertyValueAsBoolean(byte property)
Retrieve the value of a configuration property that is of type boolean. |
ConfigProps |
getPropertyValueAsConfigProps(byte property)
Retrieve the value of a configuration property that is of type ConfigProps. |
java.util.List<ConfigProps> |
getPropertyValueAsConfigPropsList(byte property)
Retrieve the value of a configuration property that is of type List |
java.util.List<Param> |
getPropertyValueAsParamList(byte property)
Retrieve the value of a configuration properties that is of type Param. |
java.lang.String |
getPropertyValueAsString(byte property)
Retrieve the value of a configuration property that is of type String. |
Method Detail |
---|
java.lang.String getPropertyValueAsString(byte property)
This method should not be called for a configuration property of a different type. If this method is called for a configuration property of a
different type an IllegalArgumentException
is thrown.
property
- The configuration property
boolean getPropertyValueAsBoolean(byte property)
This method should not be called for a configuration property of a different type. If this method is called for a configuration property of a
different type an IllegalArgumentException
is thrown.
property
- The configuration property
ConfigProps getPropertyValueAsConfigProps(byte property)
This method should not be called for a configuration property of a different type. If this method is called for a configuration property of a
different type an IllegalArgumentException
is thrown.
property
- The configuration property
java.util.List<ConfigProps> getPropertyValueAsConfigPropsList(byte property)
This method should not be called for a configuration property of a different type. If this method is called for a configuration property of a
different type an IllegalArgumentException
is thrown.
property
- The configuration property
ConfigProps
java.util.List<Param> getPropertyValueAsParamList(byte property)
This method should not be called for a configuration property of a different type. If this method is called for a configuration property of a
different type an IllegalArgumentException
is thrown.
property
- The configuration property
Param
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |