public interface ContentPropertyManager
ContentProperties
instead.Modifier and Type | Method and Description |
---|---|
String |
getStringProperty(ContentEntityObject entity,
String key)
Get a string property associated with a content entity object, or null if that property
is not set.
|
String |
getTextProperty(ContentEntityObject entity,
String key)
Get a text property associated with a content entity object, or null if that property
is not set.
|
void |
removeProperties(ContentEntityObject entity)
Remove all the properties associated with the content entity object.
|
void |
removeProperty(ContentEntityObject entity,
String key)
Remove the property associated with the content entity object.
|
void |
setStringProperty(ContentEntityObject entity,
String key,
String value)
Associate a string property with a content entity object, or null if that property
is not set.
|
void |
setTextProperty(ContentEntityObject entity,
String key,
String value)
Associate a text property with a content entity object, or null if that property
is not set.
|
void |
transferProperties(ContentEntityObject source,
ContentEntityObject destination)
Copies all properties associated with the source content entity object
to the destination content entity object, and then removes all properties
from the source content entity object.
|
String getStringProperty(ContentEntityObject entity, String key)
entity
- the entity the property is associated withkey
- the key with which to look up the propertyvoid setStringProperty(ContentEntityObject entity, String key, String value)
entity
- the entity the property is associated withkey
- the key with which to look up the propertyvalue
- the value to setString getTextProperty(ContentEntityObject entity, String key)
entity
- the entity the property is associated withkey
- the key with which to look up the propertyvoid setTextProperty(ContentEntityObject entity, String key, String value)
entity
- the entity the property is associated withkey
- the key with which to look up the propertyvalue
- the value to setvoid removeProperty(ContentEntityObject entity, String key)
entity
- the entity the property is associated withkey
- the key with which to look up the propertyvoid removeProperties(ContentEntityObject entity)
entity
- the entity the property is associated withvoid transferProperties(ContentEntityObject source, ContentEntityObject destination)
Intended use is for any properties saved against a Draft
to be transferred to the persisted content entity object.
source
- the entity to copy and remove properties fromdestination
- the entity to copy properties toCopyright © 2003–2018 Atlassian. All rights reserved.