InlinedDataBuffer.java 704 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.service;

import com.adobe.service.DataBuffer;
import org.omg.CORBA.portable.IDLEntity;

public final class InlinedDataBuffer
implements IDLEntity {
    public boolean isInlined;
    public String inlinedContentType = "";
    public byte[] inlinedData;
    public DataBuffer remoteDataBuffer;

    public InlinedDataBuffer() {
    }

    public InlinedDataBuffer(boolean isInlined, String inlinedContentType, byte[] inlinedData, DataBuffer remoteDataBuffer) {
        this.isInlined = isInlined;
        this.inlinedContentType = inlinedContentType;
        this.inlinedData = inlinedData;
        this.remoteDataBuffer = remoteDataBuffer;
    }
}