KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > jonas > jtests > beans > relation > tier > TiemorLocal


1 package org.objectweb.jonas.jtests.beans.relation.tier;
2
3 /**
4  * Local interface for Tiemor.
5  */

6 public interface TiemorLocal extends javax.ejb.EJBLocalObject JavaDoc {
7
8     /**
9      * Returns the numinttie
10      * @return the numinttie
11      */

12     public java.lang.Integer JavaDoc getNuminttie();
13
14     /**
15      * Returns the raisoctie
16      * @return the raisoctie
17      */

18     public java.lang.String JavaDoc getRaisoctie();
19
20
21     /**
22      * get method relation one
23      */

24     public TierValue getTierValue();
25
26     /**
27      * get method relation one
28      */

29     public void setTierValue(TierValue value);
30
31     /**
32      * Return the value object version of this entity.
33      */

34     public TiemorValue getTiemorValue();
35
36     /**
37      * Update the value object version of this entity.
38      */

39     public void update(TiemorValue value);
40
41 }
Popular Tags