wisemapping-open-source/wise-webapp/src/main/java/com/wisemapping/service/http/HttpInvokerContentType.java
2022-12-13 02:36:58 +00:00

18 lines
345 B
Java

package com.wisemapping.service.http;
public enum HttpInvokerContentType {
JSON("application/json"),
FORM_ENCODED("application/x-www-form-urlencoded");
private String httpContentType;
private HttpInvokerContentType(String type) {
this.httpContentType = type;
}
public String getHttpContentType() {
return httpContentType;
}
}