Package org.jboss.as.controller.client
Interface Operation
-
- All Superinterfaces:
AutoCloseable
,Closeable
,OperationAttachments
public interface Operation extends OperationAttachments
Encapsulates a detyped operation request passed in to the model controller, along with any attachments associated with the request.- Author:
- Kabir Khan, Brian Stansberry (c) 2011 Red Hat Inc.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
Operation.Factory
Factory methods for creatingOperation
s
-
Field Summary
-
Fields inherited from interface org.jboss.as.controller.client.OperationAttachments
EMPTY
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Operation
clone()
Deprecated.Operation
clone(ModelNode operation)
Deprecated.ModelNode
getOperation()
The detyped operation to execute-
Methods inherited from interface org.jboss.as.controller.client.OperationAttachments
getInputStreams, isAutoCloseStreams
-
-
-
-
Method Detail
-
getOperation
ModelNode getOperation()
The detyped operation to execute- Returns:
- the operation
-
clone
@Deprecated Operation clone()
Deprecated.Clones this operation.
-
clone
@Deprecated Operation clone(ModelNode operation)
Deprecated.Clones this operation, but overrides the raw operation node
-
-