01: package org.objectweb.jonas.jtests.beans.relation.tier;
02:
03: /**
04: * Local interface for Tiemor.
05: */
06: public interface TiemorLocal extends javax.ejb.EJBLocalObject {
07:
08: /**
09: * Returns the numinttie
10: * @return the numinttie
11: */
12: public java.lang.Integer getNuminttie();
13:
14: /**
15: * Returns the raisoctie
16: * @return the raisoctie
17: */
18: public java.lang.String getRaisoctie();
19:
20: /**
21: * get method relation one
22: */
23: public TierValue getTierValue();
24:
25: /**
26: * get method relation one
27: */
28: public void setTierValue(TierValue value);
29:
30: /**
31: * Return the value object version of this entity.
32: */
33: public TiemorValue getTiemorValue();
34:
35: /**
36: * Update the value object version of this entity.
37: */
38: public void update(TiemorValue value);
39:
40: }
|