org.deegree.services.wfs.protocol
Interface WFSOperation

All Known Subinterfaces:
WFSDelete, WFSInsert, WFSUpdate
All Known Implementing Classes:
WFSDelete_Impl, WFSInsert_Impl, WFSUpdate_Impl

public interface WFSOperation

Defines the operations for the WFS. For example from the FeatureTypeList-interface.

-----------------------------------------------------

Version:
$Revision: 1.2 $ $Date: 2003/04/23 07:23:15 $
Author:
Axel Schaefer

Field Summary
static int OPERATION_DELETE
          The <DeleteFeature> element indicates that the WFS can delete or remove instances of a feature type from the datastore.
static int OPERATION_INSERT
          The <InsertFeature> element is used to indicate that the WFS is capable of creating new instances of a feature type.
static int OPERATION_LOCK
          The <LockFeature> element indicates that the WFS is capable of locking instances of a feature type.
static int OPERATION_QUERY
          The <QueryFeature> element indicates that the WFS is capable of executing a query on a feature type.
static int OPERATION_UPDATE
          The <UpdateFeature> element indicates that the WFS can change the existing state of a feature.
 

Field Detail

OPERATION_INSERT

public static final int OPERATION_INSERT
The <InsertFeature> element is used to indicate that the WFS is capable of creating new instances of a feature type.

See Also:
Constant Field Values

OPERATION_UPDATE

public static final int OPERATION_UPDATE
The <UpdateFeature> element indicates that the WFS can change the existing state of a feature.

See Also:
Constant Field Values

OPERATION_DELETE

public static final int OPERATION_DELETE
The <DeleteFeature> element indicates that the WFS can delete or remove instances of a feature type from the datastore.

See Also:
Constant Field Values

OPERATION_QUERY

public static final int OPERATION_QUERY
The <QueryFeature> element indicates that the WFS is capable of executing a query on a feature type.

See Also:
Constant Field Values

OPERATION_LOCK

public static final int OPERATION_LOCK
The <LockFeature> element indicates that the WFS is capable of locking instances of a feature type.

See Also:
Constant Field Values