Interface IStyle
-
- All Known Implementing Classes:
AbstractScriptingStyle
,GenericCompiledScriptStyle
,GenericScriptingStyle
,XslStyle
public interface IStyle
Service interface style.- Since:
- 8.1.0
- Version:
- $Revision: 17593 $ $Date: 2015-07-17 11:21:36 -0300 (Fri, 17 Jul 2015) $
-
-
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, 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, 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
-
-