Package oracle.rules.rl.trace
Class BeanObject
java.lang.Object
oracle.rules.rl.trace.BeanObject
- All Implemented Interfaces:
Serializable
Java class for bean-object complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="bean-object"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="object-type" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="properties" type="{http://xmlns.oracle.com/rules/decisiontrace}bean-property" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the objectType property.Gets the value of the properties property.void
setObjectType
(String value) Sets the value of the objectType property.
-
Constructor Details
-
BeanObject
public BeanObject()
-
-
Method Details
-
getObjectType
Gets the value of the objectType property.- Returns:
- possible object is
String
-
setObjectType
Sets the value of the objectType property.- Parameters:
value
- allowed object isString
-
getProperties
Gets the value of the properties property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
set
method for the properties property.For example, to add a new item, do as follows:
getProperties().add(newItem);
Objects of the following type(s) are allowed in the list
BeanProperty
-