KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > opencrx > kernel > product1 > cci > PricingRule


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

25   public String JavaDoc getDescription(
26   );
27
28 // ----------------------------------------------------------------------------
29
// Instance/IntfAttributeSet0_1
30
// ----------------------------------------------------------------------------
31

32
33   /**
34    * Sets a new value for the attribute <code>description</code>.
35    * @param newValue The possibly null new value for attribute <code>description</code>.
36    * @exception JmiException If the value cannot be set for some reason.
37    */

38   public void setDescription(
39     String JavaDoc newValue
40   );
41
42 // ----------------------------------------------------------------------------
43
// Instance/IntfOperation
44
// ----------------------------------------------------------------------------
45

46   public org.opencrx.kernel.product1.cci.GetPriceLevelResult getPriceLevel(
47       org.opencrx.kernel.product1.cci.GetPriceLevelParams params
48   ) throws javax.jmi.reflect.RefException ;
49
50   /**
51    */

52   public org.opencrx.kernel.product1.cci.GetPriceLevelResult getPriceLevel(
53       org.opencrx.kernel.contract1.cci.AbstractContract contract
54     , org.opencrx.kernel.uom1.cci.Uom priceUom
55     , java.util.Date JavaDoc pricingDate
56     , org.opencrx.kernel.product1.cci.AbstractProduct product
57     , java.math.BigDecimal JavaDoc quantity
58   ) throws javax.jmi.reflect.RefException ;
59
60 // ----------------------------------------------------------------------------
61
// Instance/IntfAttributeGet0_1
62
// ----------------------------------------------------------------------------
63
/**
64    * @return The possibly null value for attribute <code>getPriceLevelScript</code>.
65    * @exception JmiException If the value cannot be retrieved for some reason.
66    */

67   public String JavaDoc getGetPriceLevelScript(
68   );
69
70 // ----------------------------------------------------------------------------
71
// Instance/IntfAttributeSet0_1
72
// ----------------------------------------------------------------------------
73

74
75   /**
76    * Sets a new value for the attribute <code>getPriceLevelScript</code>.
77    * @param newValue The possibly null new value for attribute <code>getPriceLevelScript</code>.
78    * @exception JmiException If the value cannot be set for some reason.
79    */

80   public void setGetPriceLevelScript(
81     String JavaDoc newValue
82   );
83
84 // ----------------------------------------------------------------------------
85
// Instance/IntfAttributeGet0_1
86
// ----------------------------------------------------------------------------
87
/**
88    * @return The possibly null value for attribute <code>isDefault</code>.
89    * @exception JmiException If the value cannot be retrieved for some reason.
90    */

91   public Boolean JavaDoc isDefault(
92   );
93
94 // ----------------------------------------------------------------------------
95
// Instance/IntfAttributeSet0_1
96
// ----------------------------------------------------------------------------
97

98
99   /**
100    * Sets a new value for the attribute <code>isDefault</code>.
101    * @param newValue The possibly null new value for attribute <code>isDefault</code>.
102    * @exception JmiException If the value cannot be set for some reason.
103    */

104   public void setDefault_(
105     Boolean JavaDoc newValue
106   );
107
108 // ----------------------------------------------------------------------------
109
// Instance/IntfAttributeGet1_1
110
// ----------------------------------------------------------------------------
111
/**
112    * Retrieves the value for the attribute <code>name</code>.
113    * @return The non-null value for attribute <code>name</code>.
114    * @exception JmiException If the value cannot be retrieved for some reason.
115    */

116   public String JavaDoc getName(
117   );
118
119 // ----------------------------------------------------------------------------
120
// Instance/IntfAttributeSet1_1
121
// ----------------------------------------------------------------------------
122
/**
123    * Sets a new value for the attribute <code>name</code>.
124    * @param newValue The non-null new value for attribute <code>name</code>.
125    * @exception JmiException If the value cannot be set for some reason.
126    */

127   public void setName(
128     String JavaDoc newValue
129   );
130
131 // ----------------------------------------------------------------------------
132
// Instance/IntfEnd.vm
133
// ----------------------------------------------------------------------------
134
}
135
Popular Tags