File: Simple.java

package info (click to toggle)
libdb-je-java 3.3.62-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 12,832 kB
  • ctags: 18,708
  • sloc: java: 149,906; xml: 1,980; makefile: 14; sh: 12
file content (16 lines) | stat: -rw-r--r-- 333 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package jca.simple;

import java.rmi.RemoteException;
import javax.ejb.EJBObject;

public interface Simple extends EJBObject {

    public void put(String key, String data)
        throws RemoteException;

    public String get(String key)
        throws RemoteException;

    public void removeDatabase()
	throws RemoteException;
}