Interface IPropertiesServiceV2
-
- All Known Implementing Classes:
PropertiesServiceV2
@Path("/properties") @Produces("application/json") @Consumes("application/json") public interface IPropertiesServiceV2AnIPropertiesServiceV2has methods to GET a list of configured system properties
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description javax.ws.rs.core.ResponsegetProperties()javax.ws.rs.core.ResponsegetProperty(String propertyName)
-
-
-
Method Detail
-
getProperties
@GET @Path("/") javax.ws.rs.core.Response getProperties()
-
getProperty
@GET @Path("/{propertyName}") @Produces({"text/plain","application/json"}) javax.ws.rs.core.Response getProperty(@PathParam("propertyName") String propertyName)
-
-