📄 _ejsremotecmprunning_number_4095c903_tie.java
字号:
// Tie class generated by rmic, do not edit.
// Contents subject to change without notice.
package com.leeman.wkexs.common.dao;
import java.io.Serializable;
import java.rmi.Remote;
import java.rmi.RemoteException;
import javax.ejb.EJBHome;
import javax.ejb.EJBObject;
import javax.ejb.Handle;
import javax.ejb.RemoveException;
import javax.rmi.CORBA.Util;
import org.omg.CORBA.BAD_OPERATION;
import org.omg.CORBA.SystemException;
import org.omg.CORBA.portable.UnknownException;
public class _EJSRemoteCMPRunning_Number_4095c903_Tie extends org.omg.CORBA_2_3.portable.ObjectImpl implements javax.rmi.CORBA.Tie {
private EJSRemoteCMPRunning_Number_4095c903 target = null;
private org.omg.CORBA.ORB orb = null;
private static final String[] _type_ids = {
"RMI:com.leeman.wkexs.common.dao.Running_Number:0000000000000000",
"RMI:javax.ejb.EJBObject:0000000000000000",
"RMI:com.ibm.websphere.csi.CSIServant:0000000000000000",
"RMI:com.ibm.websphere.csi.TransactionalObject:0000000000000000"
};
public void setTarget(java.rmi.Remote target) {
this.target = (EJSRemoteCMPRunning_Number_4095c903) target;
}
public java.rmi.Remote getTarget() {
return target;
}
public org.omg.CORBA.Object thisObject() {
return this;
}
public void deactivate() {
if (orb != null) {
orb.disconnect(this);
_set_delegate(null);
}
}
public org.omg.CORBA.ORB orb() {
return _orb();
}
public void orb(org.omg.CORBA.ORB orb) {
orb.connect(this);
}
public void _set_delegate(org.omg.CORBA.portable.Delegate del) {
super._set_delegate(del);
if (del != null)
orb = _orb();
else
orb = null;
}
public String[] _ids() {
return _type_ids;
}
public org.omg.CORBA.portable.OutputStream _invoke(String method, org.omg.CORBA.portable.InputStream _in, org.omg.CORBA.portable.ResponseHandler reply) throws org.omg.CORBA.SystemException {
try {
org.omg.CORBA_2_3.portable.InputStream in =
(org.omg.CORBA_2_3.portable.InputStream) _in;
switch (method.charAt(5)) {
case 69:
if (method.equals("_get_EJBHome")) {
return _get_EJBHome(in, reply);
}
case 101:
if (method.equals("remove")) {
return remove(in, reply);
}
case 104:
if (method.equals("_get_handle")) {
return _get_handle(in, reply);
}
case 105:
if (method.equals("_get_increment_by")) {
return _get_increment_by(in, reply);
} else if (method.equals("_set_increment_by")) {
return _set_increment_by(in, reply);
}
case 108:
if (method.equals("_get_last_used_no")) {
return _get_last_used_no(in, reply);
} else if (method.equals("_set_last_used_no")) {
return _set_last_used_no(in, reply);
}
case 109:
if (method.equals("_get_min_value")) {
return _get_min_value(in, reply);
} else if (method.equals("_set_min_value")) {
return _set_min_value(in, reply);
} else if (method.equals("_get_max_value")) {
return _get_max_value(in, reply);
} else if (method.equals("_set_max_value")) {
return _set_max_value(in, reply);
}
case 110:
if (method.equals("isIdentical")) {
return isIdentical(in, reply);
}
case 112:
if (method.equals("_get_primaryKey")) {
return _get_primaryKey(in, reply);
}
case 114:
if (method.equals("_get_recycle")) {
return _get_recycle(in, reply);
} else if (method.equals("_set_recycle")) {
return _set_recycle(in, reply);
} else if (method.equals("_get_running_desc")) {
return _get_running_desc(in, reply);
} else if (method.equals("_set_running_desc")) {
return _set_running_desc(in, reply);
}
}
throw new BAD_OPERATION();
} catch (SystemException ex) {
throw ex;
} catch (Throwable ex) {
throw new UnknownException(ex);
}
}
private org.omg.CORBA.portable.OutputStream _get_EJBHome(org.omg.CORBA_2_3.portable.InputStream in , org.omg.CORBA.portable.ResponseHandler reply) throws Throwable {
EJBHome result = target.getEJBHome();
org.omg.CORBA.portable.OutputStream out = reply.createReply();
Util.writeRemoteObject(out,result);
return out;
}
private org.omg.CORBA.portable.OutputStream _get_primaryKey(org.omg.CORBA_2_3.portable.InputStream in , org.omg.CORBA.portable.ResponseHandler reply) throws Throwable {
Object result = target.getPrimaryKey();
org.omg.CORBA.portable.OutputStream out = reply.createReply();
Util.writeAny(out,result);
return out;
}
private org.omg.CORBA.portable.OutputStream remove(org.omg.CORBA_2_3.portable.InputStream in , org.omg.CORBA.portable.ResponseHandler reply) throws Throwable {
try {
target.remove();
} catch (RemoveException ex) {
String id = "IDL:javax/ejb/RemoveEx:1.0";
org.omg.CORBA_2_3.portable.OutputStream out =
(org.omg.CORBA_2_3.portable.OutputStream) reply.createExceptionReply();
out.write_string(id);
out.write_value(ex,RemoveException.class);
return out;
}
org.omg.CORBA.portable.OutputStream out = reply.createReply();
return out;
}
private org.omg.CORBA.portable.OutputStream _get_handle(org.omg.CORBA_2_3.portable.InputStream in , org.omg.CORBA.portable.ResponseHandler reply) throws Throwable {
Handle result = target.getHandle();
org.omg.CORBA.portable.OutputStream out = reply.createReply();
Util.writeAbstractObject(out,result);
return out;
}
private org.omg.CORBA.portable.OutputStream isIdentical(org.omg.CORBA_2_3.portable.InputStream in , org.omg.CORBA.portable.ResponseHandler reply) throws Throwable {
EJBObject arg0 = (EJBObject) in.read_Object(EJBObject.class);
boolean result = target.isIdentical(arg0);
org.omg.CORBA.portable.OutputStream out = reply.createReply();
out.write_boolean(result);
return out;
}
private org.omg.CORBA.portable.OutputStream _get_last_used_no(org.omg.CORBA_2_3.portable.InputStream in , org.omg.CORBA.portable.ResponseHandler reply) throws Throwable {
Double result = target.getLast_used_no();
org.omg.CORBA_2_3.portable.OutputStream out =
(org.omg.CORBA_2_3.portable.OutputStream) reply.createReply();
out.write_value(result,Double.class);
return out;
}
private org.omg.CORBA.portable.OutputStream _set_last_used_no(org.omg.CORBA_2_3.portable.InputStream in , org.omg.CORBA.portable.ResponseHandler reply) throws Throwable {
Double arg0 = (Double) in.read_value(Double.class);
target.setLast_used_no(arg0);
org.omg.CORBA.portable.OutputStream out = reply.createReply();
return out;
}
private org.omg.CORBA.portable.OutputStream _get_min_value(org.omg.CORBA_2_3.portable.InputStream in , org.omg.CORBA.portable.ResponseHandler reply) throws Throwable {
Double result = target.getMin_value();
org.omg.CORBA_2_3.portable.OutputStream out =
(org.omg.CORBA_2_3.portable.OutputStream) reply.createReply();
out.write_value(result,Double.class);
return out;
}
private org.omg.CORBA.portable.OutputStream _set_min_value(org.omg.CORBA_2_3.portable.InputStream in , org.omg.CORBA.portable.ResponseHandler reply) throws Throwable {
Double arg0 = (Double) in.read_value(Double.class);
target.setMin_value(arg0);
org.omg.CORBA.portable.OutputStream out = reply.createReply();
return out;
}
private org.omg.CORBA.portable.OutputStream _get_max_value(org.omg.CORBA_2_3.portable.InputStream in , org.omg.CORBA.portable.ResponseHandler reply) throws Throwable {
Double result = target.getMax_value();
org.omg.CORBA_2_3.portable.OutputStream out =
(org.omg.CORBA_2_3.portable.OutputStream) reply.createReply();
out.write_value(result,Double.class);
return out;
}
private org.omg.CORBA.portable.OutputStream _set_max_value(org.omg.CORBA_2_3.portable.InputStream in , org.omg.CORBA.portable.ResponseHandler reply) throws Throwable {
Double arg0 = (Double) in.read_value(Double.class);
target.setMax_value(arg0);
org.omg.CORBA.portable.OutputStream out = reply.createReply();
return out;
}
private org.omg.CORBA.portable.OutputStream _get_recycle(org.omg.CORBA_2_3.portable.InputStream in , org.omg.CORBA.portable.ResponseHandler reply) throws Throwable {
String result = target.getRecycle();
org.omg.CORBA_2_3.portable.OutputStream out =
(org.omg.CORBA_2_3.portable.OutputStream) reply.createReply();
out.write_value(result,String.class);
return out;
}
private org.omg.CORBA.portable.OutputStream _set_recycle(org.omg.CORBA_2_3.portable.InputStream in , org.omg.CORBA.portable.ResponseHandler reply) throws Throwable {
String arg0 = (String) in.read_value(String.class);
target.setRecycle(arg0);
org.omg.CORBA.portable.OutputStream out = reply.createReply();
return out;
}
private org.omg.CORBA.portable.OutputStream _get_increment_by(org.omg.CORBA_2_3.portable.InputStream in , org.omg.CORBA.portable.ResponseHandler reply) throws Throwable {
Double result = target.getIncrement_by();
org.omg.CORBA_2_3.portable.OutputStream out =
(org.omg.CORBA_2_3.portable.OutputStream) reply.createReply();
out.write_value(result,Double.class);
return out;
}
private org.omg.CORBA.portable.OutputStream _set_increment_by(org.omg.CORBA_2_3.portable.InputStream in , org.omg.CORBA.portable.ResponseHandler reply) throws Throwable {
Double arg0 = (Double) in.read_value(Double.class);
target.setIncrement_by(arg0);
org.omg.CORBA.portable.OutputStream out = reply.createReply();
return out;
}
private org.omg.CORBA.portable.OutputStream _get_running_desc(org.omg.CORBA_2_3.portable.InputStream in , org.omg.CORBA.portable.ResponseHandler reply) throws Throwable {
String result = target.getRunning_desc();
org.omg.CORBA_2_3.portable.OutputStream out =
(org.omg.CORBA_2_3.portable.OutputStream) reply.createReply();
out.write_value(result,String.class);
return out;
}
private org.omg.CORBA.portable.OutputStream _set_running_desc(org.omg.CORBA_2_3.portable.InputStream in , org.omg.CORBA.portable.ResponseHandler reply) throws Throwable {
String arg0 = (String) in.read_value(String.class);
target.setRunning_desc(arg0);
org.omg.CORBA.portable.OutputStream out = reply.createReply();
return out;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -