managekeypoatie.java

来自「corba是一款商用内存检测工具」· Java 代码 · 共 83 行

JAVA
83
字号

/**
 * <ul>
 * <li> <b>IDL Source</b>    "ManageKey.idl"
 * <li> <b>IDL Name</b>      ::ManageKey
 * <li> <b>Repository Id</b> IDL:ManageKey:1.0
 * </ul>
 * <b>IDL definition:</b>
 * <pre>
 * interface ManageKey {
  ...
};
 * </pre>
 */
public class ManageKeyPOATie extends ManageKeyPOA {
  private ManageKeyOperations _delegate;
  private org.omg.PortableServer.POA _poa;

  public ManageKeyPOATie (final ManageKeyOperations _delegate) {
    this._delegate = _delegate;
  }

  public ManageKeyPOATie (final ManageKeyOperations _delegate, 
                              final org.omg.PortableServer.POA _poa) {
    this._delegate = _delegate;
    this._poa = _poa;
  }

  public ManageKeyOperations _delegate () {
    return this._delegate;
  }

  public void _delegate (final ManageKeyOperations the_delegate) {
    this._delegate = the_delegate;
  }

  public org.omg.PortableServer.POA _default_POA () {
    if (_poa != null) {
      return _poa;
    } 
    else {
      return super._default_POA();
    }
  }

  /**
   * <pre>
   *   long long Disconnect ();
   * </pre>
   */
  public long Disconnect () {
    return this._delegate.Disconnect();
  }

  /**
   * <pre>
   *   string GetKey ();
   * </pre>
   */
  public java.lang.String GetKey () {
    return this._delegate.GetKey();
  }

  /**
   * <pre>
   *   long long SetKey (in string KeyValue);
   * </pre>
   */
  public long SetKey (java.lang.String KeyValue) {
    return this._delegate.SetKey(KeyValue);
  }

  /**
   * <pre>
   *   long long Connect (in string UserName);
   * </pre>
   */
  public long Connect (java.lang.String UserName) {
    return this._delegate.Connect(UserName);
  }

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?