Package com.netscape.certsrv.dbs
Class Modification
- java.lang.Object
-
- com.netscape.certsrv.dbs.Modification
-
public class Modification extends java.lang.ObjectA class represents a modification. This is used by the database (dbs) framework for modification operations. It specifices the modification type and values.- Version:
- $Revision$, $Date$
-
-
Field Summary
Fields Modifier and Type Field Description static intMOD_ADDAdd new value.static intMOD_DELETEDeletes old value.static intMOD_REPLACEReplace old value.
-
Constructor Summary
Constructors Constructor Description Modification(java.lang.String name, int op, java.lang.Object value)Constructs a role modification.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetName()Retrieves attribute name.intgetOp()Retrieves modification operation type.java.lang.ObjectgetValue()Retrieves attribute value.
-
-
-
Field Detail
-
MOD_ADD
public static final int MOD_ADD
Add new value.- See Also:
- Constant Field Values
-
MOD_DELETE
public static final int MOD_DELETE
Deletes old value.- See Also:
- Constant Field Values
-
MOD_REPLACE
public static final int MOD_REPLACE
Replace old value.- See Also:
- Constant Field Values
-
-