public class RequestSetProperty
extends ion.Meta.Request
| Constructor | Description |
|---|---|
RequestSetProperty(java.lang.String propertyName,
java.lang.Object propertyValue) |
create a new request to set a property of given name to given value
creating the property if it did not exist before
If the property did not exist before it will be created as non-persistent
If it existed before no changes to its persistent state are made
|
RequestSetProperty(java.lang.String propertyName,
java.lang.Object propertyValue,
java.lang.Boolean persistent) |
create a new request to set a property of given name to given value
creating the property if it did not exist before
|
| Modifier and Type | Method | Description |
|---|---|---|
java.lang.Boolean |
getPersistent() |
return whether to set the property to persistent (true),
non-persistent (false) or leave the persistent state as it was (NULL)
|
java.lang.String |
getPropertyName() |
return the name of the property to set
|
java.lang.Object |
getPropertyValue() |
return the value to set the property to
|
public RequestSetProperty(java.lang.String propertyName,
java.lang.Object propertyValue)
public RequestSetProperty(java.lang.String propertyName,
java.lang.Object propertyValue,
java.lang.Boolean persistent)
persistent - Is the property persistent or notpublic java.lang.String getPropertyName()
public java.lang.Object getPropertyValue()
public java.lang.Boolean getPersistent()