KickJava   Java API By Example, From Geeks To Geeks.

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


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

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

14    public java.lang.Integer JavaDoc getNuminttie( ) ;
15
16    /**
17     * Returns the nomusatie
18     * @return the nomusatie
19     */

20    public java.lang.String JavaDoc getNomusatie( ) ;
21
22    /**
23     * get method relation one
24     */

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

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

35    public TiephyValue getTiephyValue( ) ;
36
37    /**
38     * Update the value object version of this entity.
39     */

40    public void update( TiephyValue value ) ;
41
42 }
43
Popular Tags