|
@@ -18,11 +18,6 @@ public abstract class AbstractCloudClientSupport extends CloudClientSupport {
|
|
|
|
|
|
private static final String APP_NAME = "EC-CORE-OE-ADMIN";
|
|
|
|
|
|
- @Override
|
|
|
- protected Integer getPort() {
|
|
|
- return 10020;
|
|
|
- }
|
|
|
-
|
|
|
@Override
|
|
|
protected String getRequestMappingPrefix() {
|
|
|
return "api/core/oe/admin";
|
|
@@ -35,6 +30,7 @@ public abstract class AbstractCloudClientSupport extends CloudClientSupport {
|
|
|
protected void post(String requestMappingSuffix) {
|
|
|
super.post(APP_NAME, requestMappingSuffix);
|
|
|
}
|
|
|
+
|
|
|
protected <T> T post(String requestMappingSuffix, BaseRequest body, Class<T> responseType) {
|
|
|
return super.post(APP_NAME, requestMappingSuffix, body, responseType);
|
|
|
}
|