Interface IPropertiesServiceV2
-
- All Known Implementing Classes:
PropertiesServiceV2
@Path("/properties") @Produces("application/json") @Consumes("application/json") public interface IPropertiesServiceV2
AnIPropertiesServiceV2
has 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.Response
getProperties()
javax.ws.rs.core.Response
getProperty(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)
-
-