/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2011, Geomatys * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. */ package org.geotoolkit.ols.xml.v121; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * Defines the header information for request messages. * * <p>Java class for RequestHeaderType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="RequestHeaderType"> * <complexContent> * <extension base="{http://www.opengis.net/xls}AbstractHeaderType"> * <attribute name="clientName" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="clientPassword" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="sessionID" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="srsName" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> * <attribute name="MSID" type="{http://www.w3.org/2001/XMLSchema}string" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "RequestHeaderType") public class RequestHeaderType extends AbstractHeaderType { @XmlAttribute private String clientName; @XmlAttribute private String clientPassword; @XmlAttribute private String sessionID; @XmlAttribute @XmlSchemaType(name = "anyURI") private String srsName; @XmlAttribute(name = "MSID") private String msid; /** * Gets the value of the clientName property. * * @return * possible object is * {@link String } * */ public String getClientName() { return clientName; } /** * Sets the value of the clientName property. * * @param value * allowed object is * {@link String } * */ public void setClientName(String value) { this.clientName = value; } /** * Gets the value of the clientPassword property. * * @return * possible object is * {@link String } * */ public String getClientPassword() { return clientPassword; } /** * Sets the value of the clientPassword property. * * @param value * allowed object is * {@link String } * */ public void setClientPassword(String value) { this.clientPassword = value; } /** * Gets the value of the sessionID property. * * @return * possible object is * {@link String } * */ public String getSessionID() { return sessionID; } /** * Sets the value of the sessionID property. * * @param value * allowed object is * {@link String } * */ public void setSessionID(String value) { this.sessionID = value; } /** * Gets the value of the srsName property. * * @return * possible object is * {@link String } * */ public String getSrsName() { return srsName; } /** * Sets the value of the srsName property. * * @param value * allowed object is * {@link String } * */ public void setSrsName(String value) { this.srsName = value; } /** * Gets the value of the msid property. * * @return * possible object is * {@link String } * */ public String getMSID() { return msid; } /** * Sets the value of the msid property. * * @param value * allowed object is * {@link String } * */ public void setMSID(String value) { this.msid = value; } }