All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.appcrossings.config.AppConfigService Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package com.appcrossings.config;


import javax.validation.constraints.NotNull;
import javax.ws.rs.Consumes;
import javax.ws.rs.GET;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;

@Path("/config")
public interface AppConfigService {

  @GET
  @Path("/{path:.+}")
  @Consumes({MediaType.WILDCARD, MediaType.TEXT_PLAIN})
  @Produces(MediaType.TEXT_PLAIN)
  Response getRawProperties(@NotNull @PathParam("path") String path);
 

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy