Package com.netscape.certsrv.dbs
Class Modification
- java.lang.Object
-
- com.netscape.certsrv.dbs.Modification
-
public class Modification extends java.lang.Object
A 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 int
MOD_ADD
Add new value.static int
MOD_DELETE
Deletes old value.static int
MOD_REPLACE
Replace 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.String
getName()
Retrieves attribute name.int
getOp()
Retrieves modification operation type.java.lang.Object
getValue()
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
-
-