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