package org.openclinica.ws.beans; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.NormalizedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * <p>Java class for siteType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="siteType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="identifier" type="{http://openclinica.org/ws/beans}customStringType"/> * <element name="oid" type="{http://openclinica.org/ws/beans}customStringType"/> * <element name="name" type="{http://openclinica.org/ws/beans}customStringType"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "siteType", propOrder = { "identifier", "oid", "name" }) public class SiteType { @XmlElement(required = true) @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String identifier; @XmlElement(required = true) @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String oid; @XmlElement(required = true) @XmlJavaTypeAdapter(NormalizedStringAdapter.class) protected String name; /** * Gets the value of the identifier property. * * @return * possible object is * {@link String } * */ public String getIdentifier() { return identifier; } /** * Sets the value of the identifier property. * * @param value * allowed object is * {@link String } * */ public void setIdentifier(String value) { this.identifier = value; } /** * Gets the value of the oid property. * * @return * possible object is * {@link String } * */ public String getOid() { return oid; } /** * Sets the value of the oid property. * * @param value * allowed object is * {@link String } * */ public void setOid(String value) { this.oid = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } }