summaryrefslogtreecommitdiffstats
path: root/base/common/src/com/netscape/certsrv/request/IRequestRecord.java
blob: eba6cabb830459486dead6eb616240f5789ab3b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
// --- BEGIN COPYRIGHT BLOCK ---
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; version 2 of the License.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
// (C) 2007 Red Hat, Inc.
// All rights reserved.
// --- END COPYRIGHT BLOCK ---
package com.netscape.certsrv.request;

import java.util.Enumeration;

import com.netscape.certsrv.base.EBaseException;
import com.netscape.certsrv.dbs.IDBObj;

/**
 * A request record is the stored version of a request.
 * It has a set of attributes that are mapped into LDAP
 * attributes for actual directory operations.
 * <p>
 *
 * @version $Revision$ $Date$
 */
public interface IRequestRecord
        extends IDBObj {
    //
    // The names of the attributes stored in this record
    //

    // RequestId - identifies the record
    public final static String ATTR_REQUEST_ID = "requestId";

    // RequestStatus - indicates the current state
    public final static String ATTR_REQUEST_STATE = "requestState";

    // CreateTime - indicates the current state
    public final static String ATTR_CREATE_TIME = "requestCreateTime";

    // ModifyTime - indicates the current state
    public final static String ATTR_MODIFY_TIME = "requestModifyTime";

    // SourceId - indicates the current state
    public final static String ATTR_SOURCE_ID = "requestSourceId";

    // SourceId - indicates the current state
    public final static String ATTR_REQUEST_OWNER = "requestOwner";

    public final static String ATTR_REQUEST_TYPE = "requestType";

    // Placeholder for ExtAttr data.  this attribute is not in LDAP, but
    // is used to trigger the ExtAttrDynMapper during conversion between LDAP
    // and the RequestRecord.
    public final static String ATTR_EXT_DATA = "requestExtData";

    /**
     * Gets the request id.
     *
     * @return request id
     */
    public RequestId getRequestId();

    /**
     * Gets attribute names of the request.
     *
     * @return list of attribute names
     */
    public Enumeration<String> getAttrNames();

    /**
     * Gets the request attribute value by the name.
     *
     * @param name attribute name
     * @return attribute value
     */
    public Object get(String name);

    /**
     * Sets new attribute for the request.
     *
     * @param name attribute name
     * @param o attribute value
     */
    public void set(String name, Object o);

    /**
     * Removes attribute from the request.
     *
     * @param name attribute name
     */
    public void delete(String name)
            throws EBaseException;

    /**
     * Gets attribute list of the request.
     *
     * @return attribute list
     */
    public Enumeration<String> getElements();

    // IDBObj.getSerializableAttrNames
    //public Enumeration getSerializableAttrNames();

}