1 /* 2 * Generated by XDoclet - Do not edit! 3 */ 4 package org.jboss.test.ejbconf.beans.interfaces; 5 6 /** 7 * Remote interface for ReadOnly. 8 */ 9 public interface ReadOnly 10 extends javax.ejb.EJBObject 11 { 12 /** 13 * Get the value of id. 14 * @return value of id. 15 */ 16 public java.lang.Integer getId( ) 17 throws java.rmi.RemoteException; 18 19 /** 20 * Get the value of value. 21 * @return value of value. 22 */ 23 public java.lang.Integer getValue( ) 24 throws java.rmi.RemoteException; 25 26 /** 27 * Set the value of value. 28 * @param v Value to assign to value. 29 */ 30 public void setValue( java.lang.Integer value ) 31 throws java.rmi.RemoteException; 32 33 } 34