Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/puppycrawl/tools/checkstyle/j2ee/InputRemoteHomeInterface.java


1   package com.puppycrawl.tools.checkstyle.j2ee;
2   
3   import java.rmi.RemoteException;
4   
5   import javax.ejb.CreateException;
6   import javax.ejb.EJBHome;
7   import javax.ejb.FinderException;
8   
9   /**
10   * test for RemoteHomeInterfaceCheck
11   * @author Rick Giles
12   *
13   */
14  public interface InputRemoteHomeInterface
15      extends EJBHome
16  {
17      public Integer createInteger(int aParam)
18          throws CreateException, RemoteException;
19          
20      abstract void createSomething(int aParam);
21      
22      abstract void findSomething(int aParam);
23      
24      public Integer findInteger(int aParam)
25          throws FinderException, RemoteException;
26  }