public abstract class EDOOperator
extends java.lang.Object
Constructor and Description |
---|
EDOOperator() |
Modifier and Type | Method and Description |
---|---|
abstract boolean |
canHandleOperation(EDOOperationContext context)
Returns true iff this object can perform the given operation on
behalf of the caller on the given object.
|
abstract java.lang.String[] |
listOperationIDs(EDOOperationContext context)
Returns a list of operations that this operator can perform
on the object identified by the DOOperationContext parameter.
|
abstract void |
performOperation(EDOOperationContext context,
java.io.InputStream in,
java.io.OutputStream out)
Performs the given operation (which this object has advertised that it
can handle) which consists of reading input (if any is expected) from the
given InputStream and writing the output of the operation (if any) to the
OutputStream.
|
public abstract boolean canHandleOperation(EDOOperationContext context)
public abstract java.lang.String[] listOperationIDs(EDOOperationContext context)
public abstract void performOperation(EDOOperationContext context, java.io.InputStream in, java.io.OutputStream out)