package org.omg.Security;

/**
 * Struct definition : EstablishTrust
 * 
 * @author OpenORB Compiler
*/
public final class EstablishTrust implements org.omg.CORBA.portable.IDLEntity
{
    /**
     * Struct member trust_in_client
     */
    public boolean trust_in_client;

    /**
     * Struct member trust_in_target
     */
    public boolean trust_in_target;

    /**
     * Default constructor
     */
    public EstablishTrust()
    { }

    /**
     * Constructor with fields initialization
     * @param trust_in_client trust_in_client struct member
     * @param trust_in_target trust_in_target struct member
     */
    public EstablishTrust(boolean trust_in_client, boolean trust_in_target)
    {
        this.trust_in_client = trust_in_client;
        this.trust_in_target = trust_in_target;
    }

}
