Source code: com/prolifics/jni/WSFunctionsInterface.java
1 /* @(#)WSFunctionsInterface.java 77.4 00/04/06 18:35:55 */
2
3 /*************************************************/
4 /* Copyright (c) 2000 */
5 /* by */
6 /* JYACC, Inc., New York NY USA */
7 /* and contributors. */
8 /* Use of this program is governed by the */
9 /* JYACC Public License Version 1.0, a copy of */
10 /* which can be obtained at */
11 /* http://www.possl.org/jyacc-license.html */
12 /*************************************************/
13
14 package com.prolifics.jni;
15 import com.prolifics.ejb.PantherSessionBean;
16
17 public interface WSFunctionsInterface
18 {
19 int receive_args (String args);
20 int return_args (String args);
21 void raise_exception (String message);
22 int log (String message);
23 PantherSessionBean get_bean();
24 }