Class GlobalSettingsResource
java.lang.Object
com.atlassian.confluence.functest.rest.admin.GlobalSettingsResource
@Consumes("application/json")
@Produces("application/json")
@Path("/admin/globalsettings")
public class GlobalSettingsResource
extends Object
Backdoor REST resource for editing global settings.
- Since:
- 7.7.0
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionint
getIntValue
(String key) long
getLongValue
(String key) getStringValue
(String key) boolean
isBooleanValue
(String key) void
setBooleanValue
(String key, boolean value) void
setIntValue
(String key, int value) void
setLongValue
(String key, long value) void
setStringValue
(String key, String value)
-
Constructor Details
-
GlobalSettingsResource
-
-
Method Details
-
getStringValue
-
setStringValue
-
isBooleanValue
-
setBooleanValue
@PUT @Path("boolean/{key}") public void setBooleanValue(@PathParam("key") String key, boolean value) -
getLongValue
-
setLongValue
-
getIntValue
-
setIntValue
-