KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > test > testbean > interfaces > StatefulSession


1
2 //Title: telkel
3
//Version:
4
//Copyright: Copyright (c) 1999
5
//Author: Marc Fleury
6
//Company: telkel
7

8 /*
9   * JBoss, Home of Professional Open Source
10   * Copyright 2005, JBoss Inc., and individual contributors as indicated
11   * by the @authors tag. See the copyright.txt in the distribution for a
12   * full listing of individual contributors.
13   *
14   * This is free software; you can redistribute it and/or modify it
15   * under the terms of the GNU Lesser General Public License as
16   * published by the Free Software Foundation; either version 2.1 of
17   * the License, or (at your option) any later version.
18   *
19   * This software is distributed in the hope that it will be useful,
20   * but WITHOUT ANY WARRANTY; without even the implied warranty of
21   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22   * Lesser General Public License for more details.
23   *
24   * You should have received a copy of the GNU Lesser General Public
25   * License along with this software; if not, write to the Free
26   * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
27   * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
28   */

29 package org.jboss.test.testbean.interfaces;
30
31 import javax.ejb.*;
32 import java.rmi.*;
33
34 public interface StatefulSession extends EJBObject {
35
36   public String JavaDoc callBusinessMethodA() throws RemoteException;
37
38   public String JavaDoc callBusinessMethodB() throws RemoteException;
39   
40   public String JavaDoc callBusinessMethodB(String JavaDoc words) throws RemoteException;
41 }
42
43
Popular Tags