| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| FindTModel |
|
| 1.0;1 |
| 1 | // | |
| 2 | // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-661 | |
| 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: 2009.07.19 at 09:49:41 PM CDT | |
| 6 | // | |
| 7 | ||
| 8 | ||
| 9 | package org.apache.ws.scout.model.uddi.v2; | |
| 10 | ||
| 11 | import javax.xml.bind.annotation.XmlAccessType; | |
| 12 | import javax.xml.bind.annotation.XmlAccessorType; | |
| 13 | import javax.xml.bind.annotation.XmlAttribute; | |
| 14 | import javax.xml.bind.annotation.XmlType; | |
| 15 | ||
| 16 | ||
| 17 | /** | |
| 18 | * <p>Java class for find_tModel complex type. | |
| 19 | * | |
| 20 | * <p>The following schema fragment specifies the expected content contained within this class. | |
| 21 | * | |
| 22 | * <pre> | |
| 23 | * <complexType name="find_tModel"> | |
| 24 | * <complexContent> | |
| 25 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | |
| 26 | * <sequence> | |
| 27 | * <element ref="{urn:uddi-org:api_v2}findQualifiers" minOccurs="0"/> | |
| 28 | * <element ref="{urn:uddi-org:api_v2}name" minOccurs="0"/> | |
| 29 | * <element ref="{urn:uddi-org:api_v2}identifierBag" minOccurs="0"/> | |
| 30 | * <element ref="{urn:uddi-org:api_v2}categoryBag" minOccurs="0"/> | |
| 31 | * </sequence> | |
| 32 | * <attribute name="generic" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> | |
| 33 | * <attribute name="maxRows" type="{http://www.w3.org/2001/XMLSchema}int" /> | |
| 34 | * </restriction> | |
| 35 | * </complexContent> | |
| 36 | * </complexType> | |
| 37 | * </pre> | |
| 38 | * | |
| 39 | * | |
| 40 | */ | |
| 41 | @XmlAccessorType(XmlAccessType.FIELD) | |
| 42 | @XmlType(name = "find_tModel", propOrder = { | |
| 43 | "findQualifiers", | |
| 44 | "name", | |
| 45 | "identifierBag", | |
| 46 | "categoryBag" | |
| 47 | }) | |
| 48 | 44 | public class FindTModel { |
| 49 | ||
| 50 | protected FindQualifiers findQualifiers; | |
| 51 | protected Name name; | |
| 52 | protected IdentifierBag identifierBag; | |
| 53 | protected CategoryBag categoryBag; | |
| 54 | @XmlAttribute(required = true) | |
| 55 | protected String generic; | |
| 56 | @XmlAttribute | |
| 57 | protected Integer maxRows; | |
| 58 | ||
| 59 | /** | |
| 60 | * Gets the value of the findQualifiers property. | |
| 61 | * | |
| 62 | * @return | |
| 63 | * possible object is | |
| 64 | * {@link FindQualifiers } | |
| 65 | * | |
| 66 | */ | |
| 67 | public FindQualifiers getFindQualifiers() { | |
| 68 | 0 | return findQualifiers; |
| 69 | } | |
| 70 | ||
| 71 | /** | |
| 72 | * Sets the value of the findQualifiers property. | |
| 73 | * | |
| 74 | * @param value | |
| 75 | * allowed object is | |
| 76 | * {@link FindQualifiers } | |
| 77 | * | |
| 78 | */ | |
| 79 | public void setFindQualifiers(FindQualifiers value) { | |
| 80 | 44 | this.findQualifiers = value; |
| 81 | 44 | } |
| 82 | ||
| 83 | /** | |
| 84 | * Gets the value of the name property. | |
| 85 | * | |
| 86 | * @return | |
| 87 | * possible object is | |
| 88 | * {@link Name } | |
| 89 | * | |
| 90 | */ | |
| 91 | public Name getName() { | |
| 92 | 0 | return name; |
| 93 | } | |
| 94 | ||
| 95 | /** | |
| 96 | * Sets the value of the name property. | |
| 97 | * | |
| 98 | * @param value | |
| 99 | * allowed object is | |
| 100 | * {@link Name } | |
| 101 | * | |
| 102 | */ | |
| 103 | public void setName(Name value) { | |
| 104 | 44 | this.name = value; |
| 105 | 44 | } |
| 106 | ||
| 107 | /** | |
| 108 | * Gets the value of the identifierBag property. | |
| 109 | * | |
| 110 | * @return | |
| 111 | * possible object is | |
| 112 | * {@link IdentifierBag } | |
| 113 | * | |
| 114 | */ | |
| 115 | public IdentifierBag getIdentifierBag() { | |
| 116 | 0 | return identifierBag; |
| 117 | } | |
| 118 | ||
| 119 | /** | |
| 120 | * Sets the value of the identifierBag property. | |
| 121 | * | |
| 122 | * @param value | |
| 123 | * allowed object is | |
| 124 | * {@link IdentifierBag } | |
| 125 | * | |
| 126 | */ | |
| 127 | public void setIdentifierBag(IdentifierBag value) { | |
| 128 | 0 | this.identifierBag = value; |
| 129 | 0 | } |
| 130 | ||
| 131 | /** | |
| 132 | * Gets the value of the categoryBag property. | |
| 133 | * | |
| 134 | * @return | |
| 135 | * possible object is | |
| 136 | * {@link CategoryBag } | |
| 137 | * | |
| 138 | */ | |
| 139 | public CategoryBag getCategoryBag() { | |
| 140 | 0 | return categoryBag; |
| 141 | } | |
| 142 | ||
| 143 | /** | |
| 144 | * Sets the value of the categoryBag property. | |
| 145 | * | |
| 146 | * @param value | |
| 147 | * allowed object is | |
| 148 | * {@link CategoryBag } | |
| 149 | * | |
| 150 | */ | |
| 151 | public void setCategoryBag(CategoryBag value) { | |
| 152 | 0 | this.categoryBag = value; |
| 153 | 0 | } |
| 154 | ||
| 155 | /** | |
| 156 | * Gets the value of the generic property. | |
| 157 | * | |
| 158 | * @return | |
| 159 | * possible object is | |
| 160 | * {@link String } | |
| 161 | * | |
| 162 | */ | |
| 163 | public String getGeneric() { | |
| 164 | 0 | return generic; |
| 165 | } | |
| 166 | ||
| 167 | /** | |
| 168 | * Sets the value of the generic property. | |
| 169 | * | |
| 170 | * @param value | |
| 171 | * allowed object is | |
| 172 | * {@link String } | |
| 173 | * | |
| 174 | */ | |
| 175 | public void setGeneric(String value) { | |
| 176 | 0 | this.generic = value; |
| 177 | 0 | } |
| 178 | ||
| 179 | /** | |
| 180 | * Gets the value of the maxRows property. | |
| 181 | * | |
| 182 | * @return | |
| 183 | * possible object is | |
| 184 | * {@link Integer } | |
| 185 | * | |
| 186 | */ | |
| 187 | public Integer getMaxRows() { | |
| 188 | 0 | return maxRows; |
| 189 | } | |
| 190 | ||
| 191 | /** | |
| 192 | * Sets the value of the maxRows property. | |
| 193 | * | |
| 194 | * @param value | |
| 195 | * allowed object is | |
| 196 | * {@link Integer } | |
| 197 | * | |
| 198 | */ | |
| 199 | public void setMaxRows(Integer value) { | |
| 200 | 44 | this.maxRows = value; |
| 201 | 44 | } |
| 202 | ||
| 203 | } |