Merge branch 'develop' into stable
This commit is contained in:
commit
92b038f65b
@ -6,6 +6,7 @@ import javax.ws.rs.POST;
|
|||||||
import javax.ws.rs.Path;
|
import javax.ws.rs.Path;
|
||||||
import javax.ws.rs.PathParam;
|
import javax.ws.rs.PathParam;
|
||||||
import javax.ws.rs.Produces;
|
import javax.ws.rs.Produces;
|
||||||
|
import javax.ws.rs.QueryParam;
|
||||||
import javax.ws.rs.core.MediaType;
|
import javax.ws.rs.core.MediaType;
|
||||||
|
|
||||||
import org.apache.cxf.jaxrs.ext.multipart.MultipartBody;
|
import org.apache.cxf.jaxrs.ext.multipart.MultipartBody;
|
||||||
@ -21,7 +22,8 @@ public interface AppDefinitionsCxfApi {
|
|||||||
@Consumes({ MediaType.MULTIPART_FORM_DATA })
|
@Consumes({ MediaType.MULTIPART_FORM_DATA })
|
||||||
@Produces({ MediaType.APPLICATION_JSON })
|
@Produces({ MediaType.APPLICATION_JSON })
|
||||||
AppDefinitionRepresentation import_(
|
AppDefinitionRepresentation import_(
|
||||||
MultipartBody body);
|
MultipartBody body,
|
||||||
|
@QueryParam("renewIdmEntries") Boolean renewIdmEntries);
|
||||||
|
|
||||||
@POST
|
@POST
|
||||||
@Path("{modelId}/import")
|
@Path("{modelId}/import")
|
||||||
@ -29,7 +31,8 @@ public interface AppDefinitionsCxfApi {
|
|||||||
@Produces({ MediaType.APPLICATION_JSON })
|
@Produces({ MediaType.APPLICATION_JSON })
|
||||||
AppDefinitionRepresentation import_(
|
AppDefinitionRepresentation import_(
|
||||||
@PathParam("modelId") Long appId,
|
@PathParam("modelId") Long appId,
|
||||||
MultipartBody body);
|
MultipartBody body,
|
||||||
|
@QueryParam("renewIdmEntries") Boolean renewIdmEntries);
|
||||||
|
|
||||||
@POST
|
@POST
|
||||||
@Path("publish-app")
|
@Path("publish-app")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user