ManagerPOATie.java 3.68 KB
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.service;

import com.adobe.service.*;
import com.adobe.service.ManagerPackage.JdkLogEntry;
import com.adobe.service.ManagerPackage.LogEntry;
import org.omg.CORBA.ORB;
import org.omg.CORBA.Object;
import org.omg.PortableServer.POA;

public class ManagerPOATie
extends ManagerPOA {
    private ManagerOperations _delegate;
    private POA _poa;

    public ManagerPOATie(ManagerOperations delegate) {
        this._delegate = delegate;
    }

    public ManagerPOATie(ManagerOperations delegate, POA poa) {
        this._delegate = delegate;
        this._poa = poa;
    }

    public Manager _this() {
        return ManagerHelper.narrow(this._this_object());
    }

    public Manager _this(ORB orb) {
        return ManagerHelper.narrow(this._this_object(orb));
    }

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

    public void _delegate(ManagerOperations delegate) {
        this._delegate = delegate;
    }

    public POA _default_POA() {
        if (this._poa != null) {
            return this._poa;
        }
        return super._default_POA();
    }

    public String getDeployPropertyString(String bundle, String name) throws NoSuchPropertyException {
        return this._delegate.getDeployPropertyString(bundle, name);
    }

    public float getConfigPropertyFloat(String name) throws NoSuchPropertyException {
        return this._delegate.getConfigPropertyFloat(name);
    }

    public void signalIntValue(String name, int value) {
        this._delegate.signalIntValue(name, value);
    }

    public int getJdkLogLevel(String category) {
        return this._delegate.getJdkLogLevel(category);
    }

    public void signalStringValue(String name, String value) {
        this._delegate.signalStringValue(name, value);
    }

    public void setConfigPropertyBoolean(String name, boolean val) throws NoSuchPropertyException {
        this._delegate.setConfigPropertyBoolean(name, val);
    }

    public String getNativeDirPath() {
        return this._delegate.getNativeDirPath();
    }

    public String getPersistentDirPath() {
        return this._delegate.getPersistentDirPath();
    }

    public void signalEvent(String event) {
        this._delegate.signalEvent(event);
    }

    public int getConfigPropertyInt(String name) throws NoSuchPropertyException {
        return this._delegate.getConfigPropertyInt(name);
    }

    public void logJdk(JdkLogEntry[] jdkLogEntries) {
        this._delegate.logJdk(jdkLogEntries);
    }

    public boolean getConfigPropertyBoolean(String name) throws NoSuchPropertyException {
        return this._delegate.getConfigPropertyBoolean(name);
    }

    public String getConfigPropertyString(String name) throws NoSuchPropertyException {
        return this._delegate.getConfigPropertyString(name);
    }

    public String getProcessTempDirPath() {
        return this._delegate.getProcessTempDirPath();
    }

    public void setConfigPropertyString(String name, String val) throws NoSuchPropertyException {
        this._delegate.setConfigPropertyString(name, val);
    }

    public void setConfigPropertyFloat(String name, float val) throws NoSuchPropertyException {
        this._delegate.setConfigPropertyFloat(name, val);
    }

    public void registerController(ControlAgent cb) {
        this._delegate.registerController(cb);
    }

    public Object getResource(String resourceType) {
        return this._delegate.getResource(resourceType);
    }

    public void setConfigPropertyInt(String name, int val) throws NoSuchPropertyException {
        this._delegate.setConfigPropertyInt(name, val);
    }

    public void log(LogEntry[] logEntries) {
        this._delegate.log(logEntries);
    }
}