KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > daffodilwoods > daffodildb > server > serversystem > CallResult


1 package com.daffodilwoods.daffodildb.server.serversystem;
2
3 import java.io.*;
4
5 import com.daffodilwoods.database.resource.*;
6 import com.daffodilwoods.database.utility.*;
7 public class CallResult implements Serializable {
8   Object JavaDoc result;
9   Object JavaDoc outParameter;
10
11   public CallResult(Object JavaDoc result,Object JavaDoc outParameters) throws DException {
12     this.result = result;
13     this.outParameter = outParameters;
14   }
15
16   public Object JavaDoc getResult() throws DException {
17     return result;
18   }
19
20   public Object JavaDoc getOUTParameters() throws DException {
21     return outParameter;
22   }
23
24   public void print() {
25   }
26 }
27
Popular Tags