Interface IStyle
-
- All Known Implementing Classes:
AbstractScriptingStyle
,GenericCompiledScriptStyle
,GenericScriptingStyle
,XslStyle
public interface IStyle
Service interface style.- Since:
- 8.1.0
- Version:
- $Revision$ $Date$
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
transformOutput(IServiceInterfaceRequestSPI request, IServiceInterfaceRenderResponseSPI response)
Transforms the output of a service interface.void
transformOutput(IServiceInterfaceRequestSPI request, IServiceInterfaceRenderResponseSPI response, java.lang.String xml)
Transforms the output of a service interface using the given XML.
-
-
-
Method Detail
-
transformOutput
void transformOutput(IServiceInterfaceRequestSPI request, IServiceInterfaceRenderResponseSPI response) throws PortalException
Transforms the output of a service interface.- Parameters:
request
- the request.response
- the response.- Throws:
PortalException
- Since:
- 8.1.0
-
transformOutput
void transformOutput(IServiceInterfaceRequestSPI request, IServiceInterfaceRenderResponseSPI response, java.lang.String xml) throws PortalException
Transforms the output of a service interface using the given XML.- Parameters:
request
- the request.response
- the response.xml
- the XML string to use.- Throws:
PortalException
- Since:
- 8.1.0
-
-