home *** CD-ROM | disk | FTP | other *** search
- package lotus.domino.servlet;
-
- public class NativeStubContext {
- private int i_returnCode = 0;
-
- public String attributes(String var1) throws NativeStubException {
- return NativeStub.attributes(var1);
- }
-
- public String extract(String var1) throws NativeStubException {
- return NativeStub.extract(var1);
- }
-
- public void log_error(String var1) {
- NativeStub.log_error(var1);
- }
-
- public void log_trace(String var1) {
- NativeStub.log_trace(var1);
- }
-
- public byte[] read() throws NativeStubException {
- return NativeStub.read();
- }
-
- public String reverse_translate(String var1) throws NativeStubException {
- return NativeStub.reverse_translate(var1);
- }
-
- public void set(String var1, String var2) throws NativeStubException {
- NativeStub.set(var1, var2);
- }
-
- public String translate(String var1) throws NativeStubException {
- return NativeStub.translate(var1);
- }
-
- public void write(String var1) throws NativeStubException {
- NativeStub.write(var1);
- }
-
- public void setReturnCode(int var1) {
- this.i_returnCode = var1;
- }
-
- public int getReturnCode() {
- return this.i_returnCode;
- }
- }
-