Modifier and Type | Method and Description |
---|---|
<A extends RestAction<?>> |
RestRequestBuilderFactory.build(A action,
String securityToken)
Build a
RequestBuilder object for the given action. |
<A extends RestAction<?>> |
DefaultRestRequestBuilderFactory.build(A action,
String securityToken) |
<A extends RestAction<R>,R> |
RestResponseDeserializer.deserialize(A action,
Response response)
Deserializes the provided
response for the given action . |
<A extends RestAction<R>,R> |
DefaultRestResponseDeserializer.deserialize(A action,
Response response) |
protected String |
DefaultRestRequestBuilderFactory.encodePathParam(String value)
Encodes the given
RestParameter as a path parameter. |
protected String |
DefaultRestRequestBuilderFactory.encodeQueryParam(String value)
Encodes the given
RestParameter as a query parameter. |
Modifier and Type | Method and Description |
---|---|
<A extends Action<R>,R extends Result> |
ExecutionContext.execute(A action)
Executes an action in the current context.
|
<A extends Action<R>,R extends Result> |
Dispatch.execute(A action)
Executes the specified action and returns the appropriate result.
|
<A extends Action<R>,R extends Result> |
AbstractDispatchImpl.execute(A action) |
Result |
AbstractDispatchServiceImpl.execute(String cookieSentByRPC,
Action<?> action)
ActionException and ServiceException will have their stacktraces (and stacktraces of their
causes) removed for security purposes. |
protected void |
ActionTestBase.testAction(Dispatch dispatch) |
<A extends Action<R>,R extends Result> |
ExecutionContext.undo(A action,
R result)
Undoes an action in the current context.
|
<A extends Action<R>,R extends Result> |
Dispatch.undo(A action,
R result)
Undoes a previously executed action.
|
<A extends Action<R>,R extends Result> |
AbstractDispatchImpl.undo(A action,
R result) |
void |
AbstractDispatchServiceImpl.undo(String cookieSentByRPC,
Action<Result> action,
Result result) |
Modifier and Type | Method and Description |
---|---|
R |
ActionHandler.execute(A action,
ExecutionContext context)
Handles the specified action.
|
BatchResult |
BatchActionHandler.execute(BatchAction action,
ExecutionContext context) |
TestResult |
TestActionHandler.execute(TestAction action,
ExecutionContext context) |
void |
ActionHandler.undo(A action,
R result,
ExecutionContext context)
Undoes the specified action.
|
void |
BatchActionHandler.undo(BatchAction action,
BatchResult result,
ExecutionContext context) |
void |
TestActionHandler.undo(TestAction action,
TestResult result,
ExecutionContext context) |
Modifier and Type | Method and Description |
---|---|
boolean |
ActionValidator.isValid(Action<? extends Result> action)
Validate whether or not that
Action can be executed at this time. |
Modifier and Type | Method and Description |
---|---|
Result |
DispatchService.execute(String cookieSentByRPC,
Action<?> action)
This method is called server-side whenever a new action is dispatched.
|
void |
DispatchService.undo(String cookieSentByRPC,
Action<Result> action,
Result result)
This method is called server-side whenever a previously executed action needs to be undone.
|
Modifier and Type | Method and Description |
---|---|
<A extends Action<R>,R extends Result> |
ExecutionContext.execute(A action)
Deprecated.
Executes an action in the current context.
|
<A extends Action<R>,R extends Result> |
Dispatch.execute(A action)
Deprecated.
Executes the specified action and returns the appropriate result.
|
<A extends Action<R>,R extends Result> |
AbstractDispatchImpl.execute(A action)
Deprecated.
|
Result |
AbstractDispatchServiceImpl.execute(String cookieSentByRPC,
Action<?> action)
Deprecated.
ActionException and
ServiceException will have their stacktraces (and stacktraces of their
causes) removed for security purposes. |
<A extends Action<R>,R extends Result> |
ExecutionContext.undo(A action,
R result)
Deprecated.
Undoes an action in the current context.
|
<A extends Action<R>,R extends Result> |
Dispatch.undo(A action,
R result)
Deprecated.
Undoes a previously executed action.
|
<A extends Action<R>,R extends Result> |
AbstractDispatchImpl.undo(A action,
R result)
Deprecated.
|
void |
AbstractDispatchServiceImpl.undo(String cookieSentByRPC,
Action<Result> action,
Result result)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
R |
ActionHandler.execute(A action,
ExecutionContext context)
Deprecated.
Handles the specified action.
|
BatchResult |
BatchActionHandler.execute(BatchAction action,
ExecutionContext context)
Deprecated.
|
void |
ActionHandler.undo(A action,
R result,
ExecutionContext context)
Deprecated.
Undoes the specified action.
|
void |
BatchActionHandler.undo(BatchAction action,
BatchResult result,
ExecutionContext context)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
boolean |
ActionValidator.isValid(Action<? extends Result> action)
Deprecated.
Validate whether or not that
Action can be executed at this time. |
Modifier and Type | Method and Description |
---|---|
Result |
DispatchService.execute(String cookieSentByRPC,
Action<?> action)
Deprecated.
This method is called server-side whenever a new action is dispatched.
|
void |
DispatchService.undo(String cookieSentByRPC,
Action<Result> action,
Result result)
Deprecated.
This method is called server-side whenever a previously executed action
needs to be undone.
|
Modifier and Type | Method and Description |
---|---|
Result |
TestDispatchService.execute(String cookieSentByRPC,
Action<?> action) |
void |
TestDispatchService.undo(String cookieSentByRPC,
Action<Result> action,
Result result) |
Copyright © 2010-2014 ArcBees. All Rights Reserved.