LogEntryHolder.java 824 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.service.ManagerPackage;

import com.adobe.service.ManagerPackage.LogEntry;
import com.adobe.service.ManagerPackage.LogEntryHelper;
import org.omg.CORBA.TypeCode;
import org.omg.CORBA.portable.InputStream;
import org.omg.CORBA.portable.OutputStream;
import org.omg.CORBA.portable.Streamable;

public final class LogEntryHolder
implements Streamable {
    public LogEntry value;

    public LogEntryHolder() {
    }

    public LogEntryHolder(LogEntry initial) {
        this.value = initial;
    }

    public TypeCode _type() {
        return LogEntryHelper.type();
    }

    public void _read(InputStream _in) {
        this.value = LogEntryHelper.read(_in);
    }

    public void _write(OutputStream _out) {
        LogEntryHelper.write(_out, this.value);
    }
}