KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > openmdx > base > cci > Provider


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:07 CEST 2006
9
//
10
// GENERATED - DO NOT CHANGE MANUALLY
11
//
12
//////////////////////////////////////////////////////////////////////////////
13
package org.openmdx.base.cci;
14
15 public interface Provider
16   extends org.openmdx.base.accessor.jmi.cci.RefObject_1_0
17  {
18 // ----------------------------------------------------------------------------
19
// Instance/IntfReferenceGet1_1NoQualifier
20
// ----------------------------------------------------------------------------
21
/**
22    * Retrieves the value for the reference <code>authority</code>.
23    * @return The non-null value for this reference.
24    * @exception JmiException If the value cannot be retrieved for some reason.
25    */

26   public org.openmdx.base.cci.Authority getAuthority(
27   );
28
29 // ----------------------------------------------------------------------------
30
// Instance/IntfReferenceGet0_1WithQualifier
31
// ----------------------------------------------------------------------------
32
/**
33    * Retrieves the value for the reference <code>segment</code> for the
34    * specified qualifier attribute value.
35    * @param qualifiedName The value for the qualifier attribute that qualifies this reference.
36    * @return The possibly null value for this reference.
37    * @exception JmiException If the value cannot be retrieved for some reason.
38    */

39   public org.openmdx.base.cci.Segment getSegment(
40     String JavaDoc qualifiedName
41   );
42
43 // ----------------------------------------------------------------------------
44
// Instance/IntfReferenceGet0_nWithFilter
45
// ----------------------------------------------------------------------------
46
/**
47    * Retrieves a collection containing all the elements for the reference
48    * <code>segment</code>.
49    * @return A collection containing all the elements for this reference.
50    * @exception JmiException If the values cannot be retrieved for some reason.
51    */

52   public java.util.Collection JavaDoc getSegment(
53   );
54
55   /**
56    * Retrieves the value for the reference <code>segment</code> for the
57    * specified filter.
58    * @param filter filter which is applied to the set of referenced objects.
59    * @return The filtered collection of referenced objects.
60    * @exception JmiException If the value cannot be retrieved for some reason.
61    */

62   public java.util.List JavaDoc getSegment(
63     org.openmdx.base.cci.SegmentFilter filter
64   );
65
66 // ----------------------------------------------------------------------------
67
// Instance/IntfReferenceAddWithQualifier
68
// ----------------------------------------------------------------------------
69
/**
70    * @param qualifiedName The qualifier attribute value that qualifies the reference to get the element to be appended.
71    * @param newValue The element to be appended.
72    * @exception JmiException If the value cannot be appended for some reason.
73    */

74   public void addSegment (
75     String JavaDoc qualifiedName,
76     org.openmdx.base.cci.Segment newValue
77   );
78
79 // ----------------------------------------------------------------------------
80
// Instance/IntfReferenceAddWithoutQualifier
81
// ----------------------------------------------------------------------------
82
/**
83    * @param newValue The element to be appended.
84    * @exception JmiException If the value cannot be appended for some reason.
85    */

86   public void addSegment (
87     org.openmdx.base.cci.Segment newValue
88   );
89
90 // ----------------------------------------------------------------------------
91
// Instance/IntfReferenceRemoveWithQualifier
92
// ----------------------------------------------------------------------------
93
/**
94    * @exception JmiException If the value cannot be removed for some reason.
95    */

96   public void removeSegment (
97     String JavaDoc qualifiedName
98   );
99 // ----------------------------------------------------------------------------
100
// Instance/IntfEnd.vm
101
// ----------------------------------------------------------------------------
102
}
103
Popular Tags