KickJava   Java API By Example, From Geeks To Geeks.

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


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 Privilege
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/IntfAttributeSet0_1
50
// ----------------------------------------------------------------------------
51

52
53   /**
54    * Sets a new value for the attribute <code>description</code>.
55    * @param newValue The possibly null new value for attribute <code>description</code>.
56    * @exception JmiException If the value cannot be set for some reason.
57    */

58   public void setDescription(
59     String JavaDoc newValue
60   );
61
62 // ----------------------------------------------------------------------------
63
// Instance/IntfAttributeGet1_1
64
// ----------------------------------------------------------------------------
65
/**
66    * Retrieves the value for the attribute <code>name</code>.
67    * @return The non-null value for attribute <code>name</code>.
68    * @exception JmiException If the value cannot be retrieved for some reason.
69    */

70   public String JavaDoc getName(
71   );
72
73 // ----------------------------------------------------------------------------
74
// Instance/IntfEnd.vm
75
// ----------------------------------------------------------------------------
76
}
77
Popular Tags