YARN-7909. Add charset to YARN Service REST API. (Contributed by Eric Yang)
This commit is contained in:
parent
543f3abbee
commit
c97d5bceb2
|
@ -94,7 +94,7 @@ public class ApiServer {
|
|||
@GET
|
||||
@Path(VERSION)
|
||||
@Consumes({ MediaType.APPLICATION_JSON })
|
||||
@Produces({ MediaType.APPLICATION_JSON })
|
||||
@Produces({ MediaType.APPLICATION_JSON + ";charset=utf-8" })
|
||||
public Response getVersion() {
|
||||
String version = VersionInfo.getBuildVersion();
|
||||
LOG.info(version);
|
||||
|
@ -104,7 +104,7 @@ public class ApiServer {
|
|||
@POST
|
||||
@Path(SERVICE_ROOT_PATH)
|
||||
@Consumes({ MediaType.APPLICATION_JSON })
|
||||
@Produces({ MediaType.APPLICATION_JSON })
|
||||
@Produces({ MediaType.APPLICATION_JSON + ";charset=utf-8" })
|
||||
public Response createService(@Context HttpServletRequest request,
|
||||
Service service) {
|
||||
ServiceStatus serviceStatus = new ServiceStatus();
|
||||
|
@ -167,7 +167,7 @@ public class ApiServer {
|
|||
@GET
|
||||
@Path(SERVICE_PATH)
|
||||
@Consumes({ MediaType.APPLICATION_JSON })
|
||||
@Produces({ MediaType.APPLICATION_JSON })
|
||||
@Produces({ MediaType.APPLICATION_JSON + ";charset=utf-8" })
|
||||
public Response getService(@Context HttpServletRequest request,
|
||||
@PathParam(SERVICE_NAME) String appName) {
|
||||
ServiceStatus serviceStatus = new ServiceStatus();
|
||||
|
@ -210,7 +210,7 @@ public class ApiServer {
|
|||
@DELETE
|
||||
@Path(SERVICE_PATH)
|
||||
@Consumes({ MediaType.APPLICATION_JSON })
|
||||
@Produces({ MediaType.APPLICATION_JSON })
|
||||
@Produces({ MediaType.APPLICATION_JSON + ";charset=utf-8" })
|
||||
public Response deleteService(@Context HttpServletRequest request,
|
||||
@PathParam(SERVICE_NAME) String appName) {
|
||||
try {
|
||||
|
@ -273,7 +273,8 @@ public class ApiServer {
|
|||
@PUT
|
||||
@Path(COMPONENT_PATH)
|
||||
@Consumes({ MediaType.APPLICATION_JSON })
|
||||
@Produces({ MediaType.APPLICATION_JSON, MediaType.TEXT_PLAIN })
|
||||
@Produces({ MediaType.APPLICATION_JSON + ";charset=utf-8",
|
||||
MediaType.TEXT_PLAIN })
|
||||
public Response updateComponent(@Context HttpServletRequest request,
|
||||
@PathParam(SERVICE_NAME) String appName,
|
||||
@PathParam(COMPONENT_NAME) String componentName, Component component) {
|
||||
|
@ -322,7 +323,7 @@ public class ApiServer {
|
|||
@PUT
|
||||
@Path(SERVICE_PATH)
|
||||
@Consumes({ MediaType.APPLICATION_JSON })
|
||||
@Produces({ MediaType.APPLICATION_JSON })
|
||||
@Produces({ MediaType.APPLICATION_JSON + ";charset=utf-8" })
|
||||
public Response updateService(@Context HttpServletRequest request,
|
||||
@PathParam(SERVICE_NAME) String appName,
|
||||
Service updateServiceData) {
|
||||
|
|
Loading…
Reference in New Issue