package org.hl7.v3; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlSeeAlso; import javax.xml.bind.annotation.XmlType; /** * * A telecommunications address specified according to * Internet standard RFC 1738 * [http://www.ietf.org/rfc/rfc1738.txt]. The * URL specifies the protocol and the contact point defined * by that protocol for the resource. Notable uses of the * telecommunication address data type are for telephone and * telefax numbers, e-mail addresses, Hypertext references, * FTP references, etc. * * * <p>Java class for URL complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="URL"> * <complexContent> * <extension base="{urn:hl7-org:v3}ANY"> * <attribute name="value" type="{urn:hl7-org:v3}url" /> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "URL") @XmlSeeAlso({ TEL.class }) public abstract class URL extends ANY { /** * */ private static final long serialVersionUID = 1L; @XmlAttribute protected String value; /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } }