/**
interface FMSInterface {
::java::util::Vector getMsgById(
in string arg0,
in string arg1,
in string arg2
);
::java::util::Vector getMsgByFileName(
in string arg0,
in string arg1,
in string arg2
);
void addMsgBasic(
in string arg0,
in string arg1,
in string arg2,
in string arg3,
in ::java::util::Date arg4,
in string arg5
);
void addMsg(
in string arg0,
in string arg1,
in ::MDMSupport::MDMessage arg2
);
void deleteMsg(
in string arg0,
in string arg1,
in string arg2
);
void createNewFiles(
in string arg0
);
void flush(
in string arg0,
in string arg1
);
::MDMSupport::MessageTableModel getAllMsg(
in string arg0,
in string arg1
);
::MDMSupport::MessageTableModel getAllMsgExceptInVector(
in string arg0,
in string arg1,
in ::java::util::Vector arg2
);
};
*/
public class _tie_FMSInterface extends _FMSInterfaceImplBase {
private FMSInterfaceOperations _delegate;
public _tie_FMSInterface(FMSInterfaceOperations delegate, java.lang.String name) {
super(name);
this._delegate = delegate;
}
public _tie_FMSInterface(FMSInterfaceOperations delegate) {
this._delegate = delegate;
}
public FMSInterfaceOperations _delegate() {
return this._delegate;
}
/**
Operation: ::FMSInterface::getMsgById.
::java::util::Vector getMsgById(
in string arg0,
in string arg1,
in string arg2
);
*/
public java.util.Vector getMsgById(
java.lang.String arg0,
java.lang.String arg1,
java.lang.String arg2
) {
return this._delegate.getMsgById(
arg0,
arg1,
arg2
);
}
/**
Operation: ::FMSInterface::getMsgByFileName.
::java::util::Vector getMsgByFileName(
in string arg0,
in string arg1,
in string arg2
);
*/
public java.util.Vector getMsgByFileName(
java.lang.String arg0,
java.lang.String arg1,
java.lang.String arg2
) {
return this._delegate.getMsgByFileName(
arg0,
arg1,
arg2
);
}
/**
Operation: ::FMSInterface::addMsgBasic.
void addMsgBasic(
in string arg0,
in string arg1,
in string arg2,
in string arg3,
in ::java::util::Date arg4,
in string arg5
);
*/
public void addMsgBasic(
java.lang.String arg0,
java.lang.String arg1,
java.lang.String arg2,
java.lang.String arg3,
java.util.Date arg4,
java.lang.String arg5
) {
this._delegate.addMsgBasic(
arg0,
arg1,
arg2,
arg3,
arg4,
arg5
);
}
/**
Operation: ::FMSInterface::addMsg.
void addMsg(
in string arg0,
in string arg1,
in ::MDMSupport::MDMessage arg2
);
*/
public void addMsg(
java.lang.String arg0,
java.lang.String arg1,
MDMSupport.MDMessage arg2
) {
this._delegate.addMsg(
arg0,
arg1,
arg2
);
}
/**
Operation: ::FMSInterface::deleteMsg.
void deleteMsg(
in string arg0,
in string arg1,
in string arg2
);
*/
public void deleteMsg(
java.lang.String arg0,
java.lang.String arg1,
java.lang.String arg2
) {
this._delegate.deleteMsg(
arg0,
arg1,
arg2
);
}
/**
Operation: ::FMSInterface::createNewFiles.
void createNewFiles(
in string arg0
);
*/
public void createNewFiles(
java.lang.String arg0
) {
this._delegate.createNewFiles(
arg0
);
}
/**
Operation: ::FMSInterface::flush.
void flush(
in string arg0,
in string arg1
);
*/
public void flush(
java.lang.String arg0,
java.lang.String arg1
) {
this._delegate.flush(
arg0,
arg1
);
}
/**
Operation: ::FMSInterface::getAllMsg.
::MDMSupport::MessageTableModel getAllMsg(
in string arg0,
in string arg1
);
*/
public MDMSupport.MessageTableModel getAllMsg(
java.lang.String arg0,
java.lang.String arg1
) {
return this._delegate.getAllMsg(
arg0,
arg1
);
}
/**
Operation: ::FMSInterface::getAllMsgExceptInVector.
::MDMSupport::MessageTableModel getAllMsgExceptInVector(
in string arg0,
in string arg1,
in ::java::util::Vector arg2
);
*/
public MDMSupport.MessageTableModel getAllMsgExceptInVector(
java.lang.String arg0,
java.lang.String arg1,
java.util.Vector arg2
) {
return this._delegate.getAllMsgExceptInVector(
arg0,
arg1,
arg2
);
}
}