Provides a web service for managing Jive System Properties.
deleteProperty
Deletes a Jive System Property.
DELETE http://domain:port/application_context/rpc/rest/systemPropertiesService/properties/{name}
Arguments
| Name |
Type |
Description |
| name |
xs:string |
the property to delete. |
Arguments Template
<deleteProperty>
<name>xs:string</name>
</deleteProperty>Errors
getProperties
Obtains all Jive System Properties.
GET http://domain:port/application_context/rpc/rest/systemPropertiesService/properties
Response
| Type |
Description |
| List of
Property |
the current Jive System Properties. |
Response Template
<getPropertiesResponse>
<!-- List of ... -->
<return>
<!-- Contents of Property -->
<return>
</getPropertiesResponse>Errors
saveProperty
Saves a name/value pair as a Jive System Property.
POST http://domain:port/application_context/rpc/rest/systemPropertiesService/properties
Arguments
| Name |
Type |
Description |
| name |
xs:string |
the name of the property to set. |
| value |
xs:string |
the value of the property to set. |
Arguments Template
<saveProperty>
<name>xs:string</name>
<value>xs:string</value>
</saveProperty>Errors