GetAvailableCAsInProfileResponse.java :  » Authentication-Authorization » ejbca » org » ejbca » core » protocol » ws » jaxws » Java Open Source

Java Open Source » Authentication Authorization » ejbca 
ejbca » org » ejbca » core » protocol » ws » jaxws » GetAvailableCAsInProfileResponse.java

package org.ejbca.core.protocol.ws.jaxws;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import org.ejbca.core.protocol.ws.objects.NameAndId;

@XmlRootElement(name = "getAvailableCAsInProfileResponse", namespace = "http://ws.protocol.core.ejbca.org/")
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "getAvailableCAsInProfileResponse", namespace = "http://ws.protocol.core.ejbca.org/")
public class GetAvailableCAsInProfileResponse {

    @XmlElement(name = "return", namespace = "")
    private NameAndId[] _return;

    /**
     * 
     * @return
     *     returns NameAndId[]
     */
    public NameAndId[] get_return() {
        return this._return;
    }

    /**
     * 
     * @param _return
     *     the value for the _return property
     */
    public void set_return(NameAndId[] _return) {
        this._return = _return;
    }

}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.