com.appcrossings.config.AppConfigService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of appconfig-service Show documentation
Show all versions of appconfig-service Show documentation
Base Appconfig Spring Boot Application
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