Interface IPropertiesServiceV2

  • All Known Implementing Classes:
    PropertiesServiceV2

    @Path("/properties")
    @Produces("application/json")
    @Consumes("application/json")
    public interface IPropertiesServiceV2
    An IPropertiesServiceV2 has methods to GET a list of configured system properties
    • 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)