|
IBM WebSphere Application ServerTM Release 7 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface PropertyController
Encapsulates setter methods used when initializing instances of Property
.
This interface has no dependencies on runtime specific objects, as it
is intended for reuse across general component runtime environments
where brokered communication across components may be necessary.
See the corresponding getter methods in Property
for detailed descriptions of the attributes
set by the various setters in this interface.
Currently only Name is supported, others are ignored.
PropertyBrokerService
may be used to create
instances of Property
. After instantiation, required fields must be set using
the setters provided by this interface.
Example:
PropertyController cproperty = propertyFactoryService.createProperty(myconfig); cproperty.setNamespace("namespace"); cproperty.setType("String"); cproperty.setName("My Property");
PropertyBrokerService
,
Property
Method Summary | |
---|---|
void |
setClassname(java.lang.String classname)
Sets the class used to hold the Property value. |
void |
setName(java.lang.String name)
Sets the name of the property. |
void |
setNamespace(java.lang.String namespace)
Sets the namespace of the property. |
void |
setType(java.lang.String type)
Sets the type of the property. |
Methods inherited from interface com.ibm.portal.propertybroker.property.Property |
---|
getClassname, getName, getNamespace, getOwningDefinitionId, getType |
Method Detail |
---|
void setName(java.lang.String name)
name
- the nameProperty.getName()
void setType(java.lang.String type)
type
- the typeProperty.getType()
void setNamespace(java.lang.String namespace)
namespace
- the namespaceProperty.getNamespace()
void setClassname(java.lang.String classname)
classname
- the name of the class used to hold instances of the Property valueProperty.getClassname()
|
IBM WebSphere Application ServerTM Release 7 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |