01: /*
02: * Generated by XDoclet - Do not edit!
03: */
04: package com.mockrunner.example.ejb.interfaces;
05:
06: /**
07: * Remote interface for UserEntity.
08: */
09: public interface UserEntity extends javax.ejb.EJBObject {
10:
11: public java.lang.String getPassword()
12: throws java.rmi.RemoteException;
13:
14: public void setPassword(java.lang.String password)
15: throws java.rmi.RemoteException;
16:
17: public java.lang.String getUsername()
18: throws java.rmi.RemoteException;
19:
20: }
|