org.geotools.data.wfs
Interface Action

All Known Implementing Classes:
Action.DeleteAction, Action.InsertAction, Action.UpdateAction

public interface Action

This interface represents pending actions within a transaction.

Author:
dzwiers

Nested Class Summary
static class Action.DeleteAction
          Represents a Delete Action for a Transaction
static class Action.InsertAction
          Represents an Insert Action
static class Action.UpdateAction
          Represents an Update Action
 
Field Summary
static int DELETE
          Action mask for a Delete Action
static int INSERT
          Action mask for an Insert Action
static int UPDATE
          Action mask for an Update Action
 
Method Summary
 Filter getFilter()
           
 int getType()
           
 java.lang.String getTypeName()
           
 

Field Detail

INSERT

public static final int INSERT
Action mask for an Insert Action

See Also:
Constant Field Values

UPDATE

public static final int UPDATE
Action mask for an Update Action

See Also:
Constant Field Values

DELETE

public static final int DELETE
Action mask for a Delete Action

See Also:
Constant Field Values
Method Detail

getType

public int getType()
Returns:
The Type of Action ... one of the three Constants

getFilter

public Filter getFilter()
Returns:
The Filter on which to inflict the Action

getTypeName

public java.lang.String getTypeName()
Returns:
The FeatureType name for which this Action is intended


Copyright © GeoTools. All Rights Reserved.