| Classes in this File | Line Coverage | Branch Coverage | Complexity | |||||||
| TCloud |
|
| 0.0;0 |
| 1 | // |
|
| 2 | // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.5-b01-fcs |
|
| 3 | // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> |
|
| 4 | // Any modifications to this file will be lost upon recompilation of the source schema. |
|
| 5 | // Generated on: 2008.06.11 at 12:15:38 AM EDT |
|
| 6 | // |
|
| 7 | ||
| 8 | ||
| 9 | package yarfraw.generated.rss20.elements; |
|
| 10 | ||
| 11 | import java.math.BigInteger; |
|
| 12 | import javax.xml.bind.annotation.XmlAccessType; |
|
| 13 | import javax.xml.bind.annotation.XmlAccessorType; |
|
| 14 | import javax.xml.bind.annotation.XmlAttribute; |
|
| 15 | import javax.xml.bind.annotation.XmlSchemaType; |
|
| 16 | import javax.xml.bind.annotation.XmlType; |
|
| 17 | ||
| 18 | ||
| 19 | /** |
|
| 20 | * Specifies a web service that supports the rssCloud interface which can be implemented in HTTP-POST, XML-RPC or SOAP 1.1. |
|
| 21 | * Its purpose is to allow processes to register with a cloud to be notified of updates to the channel, implementing a lightweight publish-subscribe protocol for RSS feeds. |
|
| 22 | * |
|
| 23 | * <p>Java class for tCloud complex type. |
|
| 24 | * |
|
| 25 | * <p>The following schema fragment specifies the expected content contained within this class. |
|
| 26 | * |
|
| 27 | * <pre> |
|
| 28 | * <complexType name="tCloud"> |
|
| 29 | * <complexContent> |
|
| 30 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
|
| 31 | * <attribute name="domain" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> |
|
| 32 | * <attribute name="port" use="required" type="{http://www.w3.org/2001/XMLSchema}positiveInteger" /> |
|
| 33 | * <attribute name="path" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> |
|
| 34 | * <attribute name="registerProcedure" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> |
|
| 35 | * <attribute name="protocol" use="required" type="{}tCloudProtocol" /> |
|
| 36 | * </restriction> |
|
| 37 | * </complexContent> |
|
| 38 | * </complexType> |
|
| 39 | * </pre> |
|
| 40 | * |
|
| 41 | * |
|
| 42 | */ |
|
| 43 | @XmlAccessorType(XmlAccessType.FIELD) |
|
| 44 | @XmlType(name = "tCloud") |
|
| 45 | 9 | public class TCloud { |
| 46 | ||
| 47 | @XmlAttribute(required = true) |
|
| 48 | protected String domain; |
|
| 49 | @XmlAttribute(required = true) |
|
| 50 | @XmlSchemaType(name = "positiveInteger") |
|
| 51 | protected BigInteger port; |
|
| 52 | @XmlAttribute(required = true) |
|
| 53 | protected String path; |
|
| 54 | @XmlAttribute(required = true) |
|
| 55 | protected String registerProcedure; |
|
| 56 | @XmlAttribute(required = true) |
|
| 57 | protected TCloudProtocol protocol; |
|
| 58 | ||
| 59 | /** |
|
| 60 | * Gets the value of the domain property. |
|
| 61 | * |
|
| 62 | * @return |
|
| 63 | * possible object is |
|
| 64 | * {@link String } |
|
| 65 | * |
|
| 66 | */ |
|
| 67 | public String getDomain() { |
|
| 68 | 6 | return domain; |
| 69 | } |
|
| 70 | ||
| 71 | /** |
|
| 72 | * Sets the value of the domain property. |
|
| 73 | * |
|
| 74 | * @param value |
|
| 75 | * allowed object is |
|
| 76 | * {@link String } |
|
| 77 | * |
|
| 78 | */ |
|
| 79 | public void setDomain(String value) { |
|
| 80 | 3 | this.domain = value; |
| 81 | 3 | } |
| 82 | ||
| 83 | /** |
|
| 84 | * Gets the value of the port property. |
|
| 85 | * |
|
| 86 | * @return |
|
| 87 | * possible object is |
|
| 88 | * {@link BigInteger } |
|
| 89 | * |
|
| 90 | */ |
|
| 91 | public BigInteger getPort() { |
|
| 92 | 12 | return port; |
| 93 | } |
|
| 94 | ||
| 95 | /** |
|
| 96 | * Sets the value of the port property. |
|
| 97 | * |
|
| 98 | * @param value |
|
| 99 | * allowed object is |
|
| 100 | * {@link BigInteger } |
|
| 101 | * |
|
| 102 | */ |
|
| 103 | public void setPort(BigInteger value) { |
|
| 104 | 3 | this.port = value; |
| 105 | 3 | } |
| 106 | ||
| 107 | /** |
|
| 108 | * Gets the value of the path property. |
|
| 109 | * |
|
| 110 | * @return |
|
| 111 | * possible object is |
|
| 112 | * {@link String } |
|
| 113 | * |
|
| 114 | */ |
|
| 115 | public String getPath() { |
|
| 116 | 6 | return path; |
| 117 | } |
|
| 118 | ||
| 119 | /** |
|
| 120 | * Sets the value of the path property. |
|
| 121 | * |
|
| 122 | * @param value |
|
| 123 | * allowed object is |
|
| 124 | * {@link String } |
|
| 125 | * |
|
| 126 | */ |
|
| 127 | public void setPath(String value) { |
|
| 128 | 3 | this.path = value; |
| 129 | 3 | } |
| 130 | ||
| 131 | /** |
|
| 132 | * Gets the value of the registerProcedure property. |
|
| 133 | * |
|
| 134 | * @return |
|
| 135 | * possible object is |
|
| 136 | * {@link String } |
|
| 137 | * |
|
| 138 | */ |
|
| 139 | public String getRegisterProcedure() { |
|
| 140 | 6 | return registerProcedure; |
| 141 | } |
|
| 142 | ||
| 143 | /** |
|
| 144 | * Sets the value of the registerProcedure property. |
|
| 145 | * |
|
| 146 | * @param value |
|
| 147 | * allowed object is |
|
| 148 | * {@link String } |
|
| 149 | * |
|
| 150 | */ |
|
| 151 | public void setRegisterProcedure(String value) { |
|
| 152 | 3 | this.registerProcedure = value; |
| 153 | 3 | } |
| 154 | ||
| 155 | /** |
|
| 156 | * Gets the value of the protocol property. |
|
| 157 | * |
|
| 158 | * @return |
|
| 159 | * possible object is |
|
| 160 | * {@link TCloudProtocol } |
|
| 161 | * |
|
| 162 | */ |
|
| 163 | public TCloudProtocol getProtocol() { |
|
| 164 | 12 | return protocol; |
| 165 | } |
|
| 166 | ||
| 167 | /** |
|
| 168 | * Sets the value of the protocol property. |
|
| 169 | * |
|
| 170 | * @param value |
|
| 171 | * allowed object is |
|
| 172 | * {@link TCloudProtocol } |
|
| 173 | * |
|
| 174 | */ |
|
| 175 | public void setProtocol(TCloudProtocol value) { |
|
| 176 | 3 | this.protocol = value; |
| 177 | 3 | } |
| 178 | ||
| 179 | } |