org.omg.CORBA.OperationDefPOATie Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openjdk-orb Show documentation
Show all versions of openjdk-orb Show documentation
JBoss repackaging of the OpenJDK ORB
The newest version!
package org.omg.CORBA;
/**
* org/omg/CORBA/OperationDefPOATie.java .
* Generated by the IDL-to-Java compiler (portable), version "3.2"
* from /home/tomek/workspace/openjdk-orb/src/share/classes/org/omg/CORBA/ir.idl
* Wednesday, February 1, 2023 4:15:32 PM CET
*/
public class OperationDefPOATie extends OperationDefPOA
{
// Constructors
public OperationDefPOATie ( org.omg.CORBA.OperationDefOperations delegate ) {
this._impl = delegate;
}
public OperationDefPOATie ( org.omg.CORBA.OperationDefOperations delegate , org.omg.PortableServer.POA poa ) {
this._impl = delegate;
this._poa = poa;
}
public org.omg.CORBA.OperationDefOperations _delegate() {
return this._impl;
}
public void _delegate (org.omg.CORBA.OperationDefOperations delegate ) {
this._impl = delegate;
}
public org.omg.PortableServer.POA _default_POA() {
if(_poa != null) {
return _poa;
}
else {
return super._default_POA();
}
}
public org.omg.CORBA.TypeCode result ()
{
return _impl.result();
} // result
public org.omg.CORBA.IDLType result_def ()
{
return _impl.result_def();
} // result_def
public void result_def (org.omg.CORBA.IDLType newResult_def)
{
_impl.result_def(newResult_def);
} // result_def
public org.omg.CORBA.ParameterDescription[] params ()
{
return _impl.params();
} // params
public void params (org.omg.CORBA.ParameterDescription[] newParams)
{
_impl.params(newParams);
} // params
public org.omg.CORBA.OperationMode mode ()
{
return _impl.mode();
} // mode
public void mode (org.omg.CORBA.OperationMode newMode)
{
_impl.mode(newMode);
} // mode
public String[] contexts ()
{
return _impl.contexts();
} // contexts
public void contexts (String[] newContexts)
{
_impl.contexts(newContexts);
} // contexts
public org.omg.CORBA.ExceptionDef[] exceptions ()
{
return _impl.exceptions();
} // exceptions
public void exceptions (org.omg.CORBA.ExceptionDef[] newExceptions)
{
_impl.exceptions(newExceptions);
} // exceptions
// read/write interface
public String id ()
{
return _impl.id();
} // id
// read/write interface
public void id (String newId)
{
_impl.id(newId);
} // id
public String name ()
{
return _impl.name();
} // name
public void name (String newName)
{
_impl.name(newName);
} // name
public String version ()
{
return _impl.version();
} // version
public void version (String newVersion)
{
_impl.version(newVersion);
} // version
// read interface
public org.omg.CORBA.Container defined_in ()
{
return _impl.defined_in();
} // defined_in
public String absolute_name ()
{
return _impl.absolute_name();
} // absolute_name
public org.omg.CORBA.Repository containing_repository ()
{
return _impl.containing_repository();
} // containing_repository
public org.omg.CORBA.ContainedPackage.Description describe ()
{
return _impl.describe();
} // describe
// write interface
public void move (org.omg.CORBA.Container new_container, String new_name, String new_version)
{
_impl.move(new_container, new_name, new_version);
} // move
// read interface
public org.omg.CORBA.DefinitionKind def_kind ()
{
return _impl.def_kind();
} // def_kind
// write interface
public void destroy ()
{
_impl.destroy();
} // destroy
private org.omg.CORBA.OperationDefOperations _impl;
private org.omg.PortableServer.POA _poa;
} // class OperationDefPOATie