KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > openmdx > security > authentication1 > cci > Credential


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.openmdx.security.authentication1.cci;
14
15 public interface Credential
16   extends
17  org.openmdx.base.cci.BasicObject,
18  org.openmdx.security.realm1.cci.Credential {
19 // ----------------------------------------------------------------------------
20
// Instance/IntfAttributeGet1_1
21
// ----------------------------------------------------------------------------
22
/**
23    * Retrieves the value for the attribute <code>id</code>.
24    * @return The non-null value for attribute <code>id</code>.
25    * @exception JmiException If the value cannot be retrieved for some reason.
26    */

27   public String JavaDoc getId(
28   );
29
30 // ----------------------------------------------------------------------------
31
// Instance/IntfOperation
32
// ----------------------------------------------------------------------------
33

34   public org.openmdx.base.cci.Void reset(
35       org.openmdx.security.authentication1.cci.CredentialResetParams params
36   ) throws javax.jmi.reflect.RefException ;
37
38   /**
39    */

40   public org.openmdx.base.cci.Void reset(
41       java.util.List JavaDoc resetValue
42     , byte[] value
43   ) throws javax.jmi.reflect.RefException ;
44
45 // ----------------------------------------------------------------------------
46
// Instance/IntfReferenceGet0_1WithQualifier
47
// ----------------------------------------------------------------------------
48
/**
49    * Retrieves the value for the reference <code>resetCredential</code> for
50    * the specified qualifier attribute value.
51    * @param index The value for the qualifier attribute that qualifies this reference.
52    * @return The possibly null value for this reference.
53    * @exception JmiException If the value cannot be retrieved for some reason.
54    */

55   public org.openmdx.security.authentication1.cci.Credential getResetCredential(
56     int index
57   );
58
59 // ----------------------------------------------------------------------------
60
// Instance/IntfReferenceGet0_nNoFilter
61
// ----------------------------------------------------------------------------
62
/**
63    * Retrieves the objects referenced by <code>resetCredential</code>.
64    * @return The collection of referenced objects.
65    * @exception JmiException If the value cannot be retrieved for some reason.
66    */

67   public java.util.Collection JavaDoc getResetCredential(
68   );
69
70 // ----------------------------------------------------------------------------
71
// Instance/IntfReferenceAddWithQualifier
72
// ----------------------------------------------------------------------------
73
/**
74    * @param index The qualifier attribute value that qualifies the reference to get the element to be appended.
75    * @param newValue The element to be appended.
76    * @exception JmiException If the value cannot be appended for some reason.
77    */

78   public void addResetCredential (
79     int index,
80     org.openmdx.security.authentication1.cci.Credential newValue
81   );
82
83 // ----------------------------------------------------------------------------
84
// Instance/IntfReferenceAddWithoutQualifier
85
// ----------------------------------------------------------------------------
86
/**
87    * @param newValue The element to be appended.
88    * @exception JmiException If the value cannot be appended for some reason.
89    */

90   public void addResetCredential (
91     org.openmdx.security.authentication1.cci.Credential newValue
92   );
93
94 // ----------------------------------------------------------------------------
95
// Instance/IntfReferenceRemoveWithQualifier
96
// ----------------------------------------------------------------------------
97
/**
98    * @exception JmiException If the value cannot be removed for some reason.
99    */

100   public void removeResetCredential (
101     int index
102   );
103 // ----------------------------------------------------------------------------
104
// Instance/IntfEnd.vm
105
// ----------------------------------------------------------------------------
106
}
107
Popular Tags