DataManagerPOATie.java 2.99 KB
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.service;

import com.adobe.service.*;
import org.omg.CORBA.ORB;
import org.omg.PortableServer.POA;

public class DataManagerPOATie
extends DataManagerPOA {
    private DataManagerOperations _delegate;
    private POA _poa;

    public DataManagerPOATie(DataManagerOperations delegate) {
        this._delegate = delegate;
    }

    public DataManagerPOATie(DataManagerOperations delegate, POA poa) {
        this._delegate = delegate;
        this._poa = poa;
    }

    public DataManager _this() {
        return DataManagerHelper.narrow(this._this_object());
    }

    public DataManager _this(ORB orb) {
        return DataManagerHelper.narrow(this._this_object(orb));
    }

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

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

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

    public int getTransactionMaxInlineSize() {
        return this._delegate.getTransactionMaxInlineSize();
    }

    public void setTransactionPropertyBytes(String name, byte[] data) {
        this._delegate.setTransactionPropertyBytes(name, data);
    }

    public void setTransactionPropertyString(String name, String data) {
        this._delegate.setTransactionPropertyString(name, data);
    }

    public int getTransactionPropertyLong(String name) {
        return this._delegate.getTransactionPropertyLong(name);
    }

    public FileDataBuffer createFileDataBuffer(String filePath) throws InvalidSourceException {
        return this._delegate.createFileDataBuffer(filePath);
    }

    public void setInvocationContext(byte[] invocationContext) {
        this._delegate.setInvocationContext(invocationContext);
    }

    public String getTransactionPropertyString(String name) {
        return this._delegate.getTransactionPropertyString(name);
    }

    public String getTempFileName(boolean create) {
        return this._delegate.getTempFileName(create);
    }

    public byte[] getTransactionPropertyBytes(String name) {
        return this._delegate.getTransactionPropertyBytes(name);
    }

    public void setTransactionMaxInlineSize(int data) {
        this._delegate.setTransactionMaxInlineSize(data);
    }

    public FileDataBuffer createFileDataBufferFromUrl(String url) throws InvalidSourceException {
        return this._delegate.createFileDataBufferFromUrl(url);
    }

    public void setTransactionPropertyLong(String name, int data) {
        this._delegate.setTransactionPropertyLong(name, data);
    }

    public byte[] getInvocationContext() {
        return this._delegate.getInvocationContext();
    }

    public void manageTempFile(String filePath) throws InvalidSourceException {
        this._delegate.manageTempFile(filePath);
    }

    public int getDefaultMaxInlineSize() {
        return this._delegate.getDefaultMaxInlineSize();
    }
}