DataManagerOperations.java 1.12 KB
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.service;

import com.adobe.service.FileDataBuffer;
import com.adobe.service.InvalidSourceException;

public interface DataManagerOperations {
    public String getTempFileName(boolean var1);

    public void manageTempFile(String var1) throws InvalidSourceException;

    public FileDataBuffer createFileDataBuffer(String var1) throws InvalidSourceException;

    public FileDataBuffer createFileDataBufferFromUrl(String var1) throws InvalidSourceException;

    public byte[] getInvocationContext();

    public void setInvocationContext(byte[] var1);

    public int getDefaultMaxInlineSize();

    public int getTransactionMaxInlineSize();

    public void setTransactionMaxInlineSize(int var1);

    public int getTransactionPropertyLong(String var1);

    public String getTransactionPropertyString(String var1);

    public byte[] getTransactionPropertyBytes(String var1);

    public void setTransactionPropertyLong(String var1, int var2);

    public void setTransactionPropertyString(String var1, String var2);

    public void setTransactionPropertyBytes(String var1, byte[] var2);
}