Class DispatchResponse
- java.lang.Object
-
- com.aspectran.core.activity.response.dispatch.DispatchResponse
-
- All Implemented Interfaces:
Response,Replicable<Response>
public class DispatchResponse extends java.lang.Object implements Response
JSP or other web resource integration.Created: 2008. 03. 22 PM 5:51:58
-
-
Constructor Summary
Constructors Constructor Description DispatchResponse(DispatchRule dispatchRule)Instantiates a new DispatchResponse with specified DispatchRule.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcommit(Activity activity)The result of the activity is processed into a specific response form and then sent to the client.java.lang.StringgetContentType()Gets the content type.DispatchRulegetDispatchRule()Gets the dispatch rule.ResponseTypegetResponseType()Gets the response type.Responsereplicate()Replicates and returns this response.static voidsaveAttributes(RequestAdapter requestAdapter, ProcessResult processResult)Save processing results as request attributes.java.lang.StringtoString()
-
-
-
Constructor Detail
-
DispatchResponse
public DispatchResponse(DispatchRule dispatchRule)
Instantiates a new DispatchResponse with specified DispatchRule.- Parameters:
dispatchRule- the dispatch rule
-
-
Method Detail
-
commit
public void commit(Activity activity) throws ResponseException
Description copied from interface:ResponseThe result of the activity is processed into a specific response form and then sent to the client.- Specified by:
commitin interfaceResponse- Parameters:
activity- the current Activity- Throws:
ResponseException- the response exception
-
getDispatchRule
public DispatchRule getDispatchRule()
Gets the dispatch rule.- Returns:
- the dispatch rule
-
getResponseType
public ResponseType getResponseType()
Description copied from interface:ResponseGets the response type.- Specified by:
getResponseTypein interfaceResponse- Returns:
- the response type
-
getContentType
public java.lang.String getContentType()
Description copied from interface:ResponseGets the content type.- Specified by:
getContentTypein interfaceResponse- Returns:
- the content type
-
replicate
public Response replicate()
Description copied from interface:ResponseReplicates and returns this response.- Specified by:
replicatein interfaceReplicable<Response>- Specified by:
replicatein interfaceResponse- Returns:
- the new response
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
saveAttributes
public static void saveAttributes(RequestAdapter requestAdapter, ProcessResult processResult)
Save processing results as request attributes.- Parameters:
requestAdapter- the request adapterprocessResult- the process result
-
-