KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencrx > security > realm1 > cci > PrincipalGroup


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:56 CEST 2006
9
//
10
// GENERATED - DO NOT CHANGE MANUALLY
11
//
12
//////////////////////////////////////////////////////////////////////////////
13
package org.opencrx.security.realm1.cci;
14
15 public interface PrincipalGroup
16   extends
17  org.opencrx.kernel.base.cci.PrincipalGroup,
18  org.openmdx.security.realm1.cci.Group {
19 // ----------------------------------------------------------------------------
20
// Instance/IntfReferenceGet0_1WithQualifier
21
// ----------------------------------------------------------------------------
22
/**
23    * Retrieves the value for the reference <code>grantedRole</code> for the
24    * specified qualifier attribute value.
25    * @param index The value for the qualifier attribute that qualifies this reference.
26    * @return The possibly null value for this reference.
27    * @exception JmiException If the value cannot be retrieved for some reason.
28    */

29   public org.openmdx.security.realm1.cci.Role getGrantedRole(
30     int index
31   );
32
33 // ----------------------------------------------------------------------------
34
// Instance/IntfReferenceGet0_nNoFilter
35
// ----------------------------------------------------------------------------
36
/**
37    * Retrieves the objects referenced by <code>grantedRole</code>.
38    * @return The collection of referenced objects.
39    * @exception JmiException If the value cannot be retrieved for some reason.
40    */

41   public java.util.Collection JavaDoc getGrantedRole(
42   );
43
44 // ----------------------------------------------------------------------------
45
// Instance/IntfReferenceAddWithQualifier
46
// ----------------------------------------------------------------------------
47
/**
48    * @param index The qualifier attribute value that qualifies the reference to get the element to be appended.
49    * @param newValue The element to be appended.
50    * @exception JmiException If the value cannot be appended for some reason.
51    */

52   public void addGrantedRole (
53     int index,
54     org.openmdx.security.realm1.cci.Role newValue
55   );
56
57 // ----------------------------------------------------------------------------
58
// Instance/IntfReferenceAddWithoutQualifier
59
// ----------------------------------------------------------------------------
60
/**
61    * @param newValue The element to be appended.
62    * @exception JmiException If the value cannot be appended for some reason.
63    */

64   public void addGrantedRole (
65     org.openmdx.security.realm1.cci.Role newValue
66   );
67
68 // ----------------------------------------------------------------------------
69
// Instance/IntfReferenceRemoveWithQualifier
70
// ----------------------------------------------------------------------------
71
/**
72    * @exception JmiException If the value cannot be removed for some reason.
73    */

74   public void removeGrantedRole (
75     int index
76   );
77 // ----------------------------------------------------------------------------
78
// Instance/IntfEnd.vm
79
// ----------------------------------------------------------------------------
80
}
81
Popular Tags