KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencrx > kernel > base > cci > AuditEntry


1 // ----------------------------------------------------------------------------
2
// Instance/IntfBegin
3
// ----------------------------------------------------------------------------
4
//////////////////////////////////////////////////////////////////////////////
5
//
6
// Name: $Id: JMIAbstractMapper.java,v 1.11 2006/01/21 23:09:07 wfro Exp $
7
// Generated by: openMDX JMI Mapper
8
// Date: Mon Apr 03 11:38:58 CEST 2006
9
//
10
// GENERATED - DO NOT CHANGE MANUALLY
11
//
12
//////////////////////////////////////////////////////////////////////////////
13
package org.opencrx.kernel.base.cci;
14
15 public interface AuditEntry
16   extends
17  org.opencrx.kernel.base.cci.SecureObject,
18  org.openmdx.base.cci.BasicObject {
19 // ----------------------------------------------------------------------------
20
// Instance/IntfAttributeGet1_1
21
// ----------------------------------------------------------------------------
22
/**
23    * Retrieves the value for the attribute <code>auditee</code>.
24    * @return The non-null value for attribute <code>auditee</code>.
25    * @exception JmiException If the value cannot be retrieved for some reason.
26    */

27   public String JavaDoc getAuditee(
28   );
29
30 // ----------------------------------------------------------------------------
31
// Instance/IntfAttributeSet1_1
32
// ----------------------------------------------------------------------------
33
/**
34    * Sets a new value for the attribute <code>auditee</code>.
35    * @param newValue The non-null new value for attribute <code>auditee</code>.
36    * @exception JmiException If the value cannot be set for some reason.
37    */

38   public void setAuditee(
39     String JavaDoc newValue
40   );
41
42 // ----------------------------------------------------------------------------
43
// Instance/IntfOperation
44
// ----------------------------------------------------------------------------
45

46   public org.opencrx.kernel.base.cci.TestAndSetVisitedByResult testAndSetVisitedBy(
47       org.opencrx.kernel.base.cci.TestAndSetVisitedByParams params
48   ) throws javax.jmi.reflect.RefException ;
49
50   /**
51    */

52   public org.opencrx.kernel.base.cci.TestAndSetVisitedByResult testAndSetVisitedBy(
53       String JavaDoc visitorId
54   ) throws javax.jmi.reflect.RefException ;
55
56 // ----------------------------------------------------------------------------
57
// Instance/IntfAttributeGet0_1
58
// ----------------------------------------------------------------------------
59
/**
60    * @return The possibly null value for attribute <code>unitOfWork</code>.
61    * @exception JmiException If the value cannot be retrieved for some reason.
62    */

63   public String JavaDoc getUnitOfWork(
64   );
65
66 // ----------------------------------------------------------------------------
67
// Instance/IntfAttributeSet0_1
68
// ----------------------------------------------------------------------------
69

70
71   /**
72    * Sets a new value for the attribute <code>unitOfWork</code>.
73    * @param newValue The possibly null new value for attribute <code>unitOfWork</code>.
74    * @exception JmiException If the value cannot be set for some reason.
75    */

76   public void setUnitOfWork(
77     String JavaDoc newValue
78   );
79
80 // ----------------------------------------------------------------------------
81
// Instance/IntfAttributeGet0_1
82
// ----------------------------------------------------------------------------
83
/**
84    * @return The possibly null value for attribute <code>visitedAt</code>.
85    * @exception JmiException If the value cannot be retrieved for some reason.
86    */

87   public String JavaDoc getVisitedAt(
88   );
89
90 // ----------------------------------------------------------------------------
91
// Instance/IntfAttributeSet0_1
92
// ----------------------------------------------------------------------------
93

94
95   /**
96    * Sets a new value for the attribute <code>visitedAt</code>.
97    * @param newValue The possibly null new value for attribute <code>visitedAt</code>.
98    * @exception JmiException If the value cannot be set for some reason.
99    */

100   public void setVisitedAt(
101     String JavaDoc newValue
102   );
103
104 // ----------------------------------------------------------------------------
105
// Instance/IntfAttributeGetSet
106
// ----------------------------------------------------------------------------
107
/**
108    * @return A set containing all elements for this attribute.
109    * @exception JmiException If the values cannot be retrieved for some reason.
110    */

111   public java.util.Set JavaDoc getVisitedBy(
112   );
113
114 // ----------------------------------------------------------------------------
115
// Instance/IntfAttributeSetSet
116
// ----------------------------------------------------------------------------
117
/**
118    * @param newValue A set containing all the new elements for this attribute.
119    * @exception JmiException If the values cannot be set for some reason.
120    */

121   public void setVisitedBy(
122     java.util.Set JavaDoc newValue
123   );
124 // ----------------------------------------------------------------------------
125
// Instance/IntfEnd.vm
126
// ----------------------------------------------------------------------------
127
}
128
Popular Tags