WSUsernamePasswordHolder.java 903 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.xmlformcallback;

import com.adobe.xmlformcallback.WSUsernamePassword;
import com.adobe.xmlformcallback.WSUsernamePasswordHelper;
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 WSUsernamePasswordHolder
implements Streamable {
    public WSUsernamePassword value;

    public WSUsernamePasswordHolder() {
    }

    public WSUsernamePasswordHolder(WSUsernamePassword initial) {
        this.value = initial;
    }

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

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

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