KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > openmdx > security > realm1 > cci > Permission


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:39:05 CEST 2006
9
//
10
// GENERATED - DO NOT CHANGE MANUALLY
11
//
12
//////////////////////////////////////////////////////////////////////////////
13
package org.openmdx.security.realm1.cci;
14
15 public interface Permission
16   extends
17  org.openmdx.base.cci.BasicObject {
18 // ----------------------------------------------------------------------------
19
// Instance/IntfAttributeGetSet
20
// ----------------------------------------------------------------------------
21
/**
22    * @return A set containing all elements for this attribute.
23    * @exception JmiException If the values cannot be retrieved for some reason.
24    */

25   public java.util.Set JavaDoc getAction(
26   );
27
28 // ----------------------------------------------------------------------------
29
// Instance/IntfAttributeSetSet
30
// ----------------------------------------------------------------------------
31
/**
32    * @param newValue A set containing all the new elements for this attribute.
33    * @exception JmiException If the values cannot be set for some reason.
34    */

35   public void setAction(
36     java.util.Set JavaDoc newValue
37   );
38 // ----------------------------------------------------------------------------
39
// Instance/IntfAttributeGet0_1
40
// ----------------------------------------------------------------------------
41
/**
42    * @return The possibly null value for attribute <code>description</code>.
43    * @exception JmiException If the value cannot be retrieved for some reason.
44    */

45   public String JavaDoc getDescription(
46   );
47
48 // ----------------------------------------------------------------------------
49
// Instance/IntfAttributeGet1_1
50
// ----------------------------------------------------------------------------
51
/**
52    * Retrieves the value for the attribute <code>name</code>.
53    * @return The non-null value for attribute <code>name</code>.
54    * @exception JmiException If the value cannot be retrieved for some reason.
55    */

56   public String JavaDoc getName(
57   );
58
59 // ----------------------------------------------------------------------------
60
// Instance/IntfReferenceGet1_1NoQualifier
61
// ----------------------------------------------------------------------------
62
/**
63    * Retrieves the value for the reference <code>privilege</code>.
64    * @return The non-null value for this reference.
65    * @exception JmiException If the value cannot be retrieved for some reason.
66    */

67   public org.openmdx.security.realm1.cci.Privilege getPrivilege(
68   );
69
70 // ----------------------------------------------------------------------------
71
// Instance/IntfReferenceSetNoQualifier
72
// ----------------------------------------------------------------------------
73
/**
74    * Sets a new value for the reference <code>privilege</code>.
75    * @param newValue The non-null new value for this reference.
76    * @exception JmiException If the value cannot be set for some reason.
77    */

78   public void setPrivilege(
79     org.openmdx.security.realm1.cci.Privilege newValue
80   );
81
82 // ----------------------------------------------------------------------------
83
// Instance/IntfReferenceGet1_1NoQualifier
84
// ----------------------------------------------------------------------------
85
/**
86    * Retrieves the value for the reference <code>realm</code>.
87    * @return The non-null value for this reference.
88    * @exception JmiException If the value cannot be retrieved for some reason.
89    */

90   public org.openmdx.security.realm1.cci.Role getRealm(
91   );
92
93 // ----------------------------------------------------------------------------
94
// Instance/IntfEnd.vm
95
// ----------------------------------------------------------------------------
96
}
97
Popular Tags