| java.lang.Object org.geoserver.platform.Operation
Operation | final public class Operation (Code) | | An operation descriptor providing metadata about a service operation.
An operation is identified by an id,service pair. Two operation
descriptors are considred equal if they have the same id, service pair.
author: Justin Deoliveira, The Open Planning Project, jdeolive@openplans.org |
id | final String id(Code) | | Unique identifier withing service of the operation.
|
method | final Method method(Code) | | The method implementing the operation
|
parameters | final Object[] parameters(Code) | | Parameters of the operation
|
service | final Service service(Code) | | Service this operation is a component of.
|
Operation | public Operation(String id, Service service, Method method, Object[] parameters)(Code) | | Creates a new operation descriptor.
Parameters: id - Id of the operation, must not be null Parameters: service - The service containing the operation, must not be null Parameters: method - THe method implementing the operation. Parameters: parameters - The parameters of the operation, may be null |
getMethod | public Method getMethod()(Code) | | The method implementing the operation. |
getParameters | public Object[] getParameters()(Code) | | The parameters supplied to the operation |
getService | public Service getService()(Code) | | The service implementing the operation. |
hashCode | public int hashCode()(Code) | | |
|
|