KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencrx > kernel > account1 > cci > CreditLimit


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:54 CEST 2006
9
//
10
// GENERATED - DO NOT CHANGE MANUALLY
11
//
12
//////////////////////////////////////////////////////////////////////////////
13
package org.opencrx.kernel.account1.cci;
14
15 public interface CreditLimit
16   extends
17  org.opencrx.kernel.generic.cci.CrxObject {
18 // ----------------------------------------------------------------------------
19
// Instance/IntfAttributeGet1_1
20
// ----------------------------------------------------------------------------
21
/**
22    * Retrieves the value for the attribute <code>creditCurrency</code>.
23    * @return The non-null value for attribute <code>creditCurrency</code>.
24    * @exception JmiException If the value cannot be retrieved for some reason.
25    */

26   public short getCreditCurrency(
27   );
28
29 // ----------------------------------------------------------------------------
30
// Instance/IntfAttributeSet1_1
31
// ----------------------------------------------------------------------------
32
/**
33    * Sets a new value for the attribute <code>creditCurrency</code>.
34    * @param newValue The non-null new value for attribute <code>creditCurrency</code>.
35    * @exception JmiException If the value cannot be set for some reason.
36    */

37   public void setCreditCurrency(
38     short newValue
39   );
40
41 // ----------------------------------------------------------------------------
42
// Instance/IntfAttributeGet0_1
43
// ----------------------------------------------------------------------------
44
/**
45    * @return The possibly null value for attribute <code>creditLimitAmount</code>.
46    * @exception JmiException If the value cannot be retrieved for some reason.
47    */

48   public java.math.BigDecimal JavaDoc getCreditLimitAmount(
49   );
50
51 // ----------------------------------------------------------------------------
52
// Instance/IntfAttributeSet0_1
53
// ----------------------------------------------------------------------------
54

55
56   /**
57    * Sets a new value for the attribute <code>creditLimitAmount</code>.
58    * @param newValue The possibly null new value for attribute <code>creditLimitAmount</code>.
59    * @exception JmiException If the value cannot be set for some reason.
60    */

61   public void setCreditLimitAmount(
62     java.math.BigDecimal JavaDoc newValue
63   );
64
65 // ----------------------------------------------------------------------------
66
// Instance/IntfAttributeGet0_1
67
// ----------------------------------------------------------------------------
68
/**
69    * @return The possibly null value for attribute <code>currentCreditUsageAmount</code>.
70    * @exception JmiException If the value cannot be retrieved for some reason.
71    */

72   public java.math.BigDecimal JavaDoc getCurrentCreditUsageAmount(
73   );
74
75 // ----------------------------------------------------------------------------
76
// Instance/IntfAttributeSet0_1
77
// ----------------------------------------------------------------------------
78

79
80   /**
81    * Sets a new value for the attribute <code>currentCreditUsageAmount</code>.
82    * @param newValue The possibly null new value for attribute <code>currentCreditUsageAmount</code>.
83    * @exception JmiException If the value cannot be set for some reason.
84    */

85   public void setCurrentCreditUsageAmount(
86     java.math.BigDecimal JavaDoc newValue
87   );
88
89 // ----------------------------------------------------------------------------
90
// Instance/IntfAttributeGet0_1
91
// ----------------------------------------------------------------------------
92
/**
93    * @return The possibly null value for attribute <code>expectedCreditUsageAmount1</code>.
94    * @exception JmiException If the value cannot be retrieved for some reason.
95    */

96   public java.math.BigDecimal JavaDoc getExpectedCreditUsageAmount1(
97   );
98
99 // ----------------------------------------------------------------------------
100
// Instance/IntfAttributeSet0_1
101
// ----------------------------------------------------------------------------
102

103
104   /**
105    * Sets a new value for the attribute <code>expectedCreditUsageAmount1</code>.
106    * @param newValue The possibly null new value for attribute <code>expectedCreditUsageAmount1</code>.
107    * @exception JmiException If the value cannot be set for some reason.
108    */

109   public void setExpectedCreditUsageAmount1(
110     java.math.BigDecimal JavaDoc newValue
111   );
112
113 // ----------------------------------------------------------------------------
114
// Instance/IntfAttributeGet0_1
115
// ----------------------------------------------------------------------------
116
/**
117    * @return The possibly null value for attribute <code>expectedCreditUsageAmount2</code>.
118    * @exception JmiException If the value cannot be retrieved for some reason.
119    */

120   public java.math.BigDecimal JavaDoc getExpectedCreditUsageAmount2(
121   );
122
123 // ----------------------------------------------------------------------------
124
// Instance/IntfAttributeSet0_1
125
// ----------------------------------------------------------------------------
126

127
128   /**
129    * Sets a new value for the attribute <code>expectedCreditUsageAmount2</code>.
130    * @param newValue The possibly null new value for attribute <code>expectedCreditUsageAmount2</code>.
131    * @exception JmiException If the value cannot be set for some reason.
132    */

133   public void setExpectedCreditUsageAmount2(
134     java.math.BigDecimal JavaDoc newValue
135   );
136
137 // ----------------------------------------------------------------------------
138
// Instance/IntfAttributeGet0_1
139
// ----------------------------------------------------------------------------
140
/**
141    * @return The possibly null value for attribute <code>expectedCreditUsageAmount3</code>.
142    * @exception JmiException If the value cannot be retrieved for some reason.
143    */

144   public java.math.BigDecimal JavaDoc getExpectedCreditUsageAmount3(
145   );
146
147 // ----------------------------------------------------------------------------
148
// Instance/IntfAttributeSet0_1
149
// ----------------------------------------------------------------------------
150

151
152   /**
153    * Sets a new value for the attribute <code>expectedCreditUsageAmount3</code>.
154    * @param newValue The possibly null new value for attribute <code>expectedCreditUsageAmount3</code>.
155    * @exception JmiException If the value cannot be set for some reason.
156    */

157   public void setExpectedCreditUsageAmount3(
158     java.math.BigDecimal JavaDoc newValue
159   );
160
161 // ----------------------------------------------------------------------------
162
// Instance/IntfAttributeGet0_1
163
// ----------------------------------------------------------------------------
164
/**
165    * @return The possibly null value for attribute <code>isCreditOnHold</code>.
166    * @exception JmiException If the value cannot be retrieved for some reason.
167    */

168   public Boolean JavaDoc isCreditOnHold(
169   );
170
171 // ----------------------------------------------------------------------------
172
// Instance/IntfAttributeSet0_1
173
// ----------------------------------------------------------------------------
174

175
176   /**
177    * Sets a new value for the attribute <code>isCreditOnHold</code>.
178    * @param newValue The possibly null new value for attribute <code>isCreditOnHold</code>.
179    * @exception JmiException If the value cannot be set for some reason.
180    */

181   public void setCreditOnHold(
182     Boolean JavaDoc newValue
183   );
184
185 // ----------------------------------------------------------------------------
186
// Instance/IntfEnd.vm
187
// ----------------------------------------------------------------------------
188
}
189
Popular Tags