Class XsltEditorResource
- java.lang.Object
-
- lumis.service.portalmanagement.xsleditor.XsltEditorResource
-
-
Constructor Summary
Constructors Constructor Description XsltEditorResource()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getControls(@NotNull String xmlData)
String
getControlXML(@NotNull String xmlData, @NotNull String controlId)
String
getInsertMarkers(@NotNull String xmlData, @NotNull String serviceInterfaceInstanceId, @NotNull String selectedInterfaceStyleId)
String
getJsonFromXml(@NotNull String xmlData)
-
-
-
Method Detail
-
getJsonFromXml
@Path("/getjsonfromxml") @POST @Produces("application/json") public String getJsonFromXml(@FormParam("xmlData") @NotNull @NotNull String xmlData) throws PortalException
- Throws:
PortalException
-
getControls
@Path("/getcontrols") @POST @Produces("application/json") public String getControls(@FormParam("xmlData") @NotNull @NotNull String xmlData) throws PortalException
- Throws:
PortalException
-
getControlXML
@Path("/getcontrolxml") @POST @Produces("text/plain") public String getControlXML(@FormParam("xmlData") @NotNull @NotNull String xmlData, @FormParam("controlId") @NotNull @NotNull String controlId) throws PortalException
- Throws:
PortalException
-
getInsertMarkers
@Path("/getinsertmarkers") @POST @Produces("text/plain") public String getInsertMarkers(@FormParam("xmlData") @NotNull @NotNull String xmlData, @FormParam("serviceInterfaceInstanceId") @NotNull @NotNull String serviceInterfaceInstanceId, @FormParam("selectedInterfaceStyleId") @NotNull @NotNull String selectedInterfaceStyleId) throws PortalException
- Throws:
PortalException
-
-