01: package org.objectweb.jonas.jtests.beans.relation.tier;
02:
03: /**
04: * Local interface for Tier.
05: */
06: public interface TierLocal 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 emailtie
16: * @return the emailtie
17: */
18: public java.lang.String getEmailtie();
19:
20: /**
21: * get method relation one
22: */
23: public TiephyValue getTiephyValue();
24:
25: /**
26: * get method relation one
27: */
28: public void setTiephyValue(TiephyValue value);
29:
30: /**
31: * get method relation one
32: */
33: public TiemorValue getTiemorValue();
34:
35: /**
36: * get method relation one
37: */
38: public void setTiemorValue(TiemorValue value);
39:
40: /**
41: * Return the value object version of this entity.
42: */
43: public TierValue getTierValue();
44:
45: /**
46: * Update the value object version of this entity.
47: */
48: public void update(TierValue value);
49:
50: }
|