| 103 | | public class Resources { |
| 104 | | |
| 105 | | @XmlElement(required = true) |
| 106 | | protected List<Resources.Resource> resource; |
| 107 | | |
| 108 | | /** |
| 109 | | * Gets the value of the resource property. |
| 110 | | * |
| 111 | | * <p> |
| 112 | | * This accessor method returns a reference to the live list, |
| 113 | | * not a snapshot. Therefore any modification you make to the |
| 114 | | * returned list will be present inside the JAXB object. |
| 115 | | * This is why there is not a <CODE>set</CODE> method for the resource property. |
| 116 | | * |
| 117 | | * <p> |
| 118 | | * For example, to add a new item, do as follows: |
| 119 | | * <pre> |
| 120 | | * getResource().add(newItem); |
| 121 | | * </pre> |
| 122 | | * |
| 123 | | * |
| 124 | | * <p> |
| 125 | | * Objects of the following type(s) are allowed in the list |
| 126 | | * {@link Resources.Resource } |
| 127 | | * |
| 128 | | * |
| 129 | | */ |
| 130 | | public List<Resources.Resource> getResource() { |
| 131 | | if (resource == null) { |
| 132 | | resource = new ArrayList<Resources.Resource>(); |
| 133 | | } |
| 134 | | return this.resource; |
| 135 | | } |
| 136 | | |
| 137 | | |
| 138 | | /** |
| 139 | | * <p>Java class for anonymous complex type. |
| 140 | | * |
| 141 | | * <p>The following schema fragment specifies the expected content contained within this class. |
| 142 | | * |
| 143 | | * <pre> |
| 144 | | * <complexType> |
| 145 | | * <complexContent> |
| 146 | | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
| 147 | | * <sequence> |
| 148 | | * <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/> |
| 149 | | * <element name="parameters"> |
| 150 | | * <complexType> |
| 151 | | * <complexContent> |
| 152 | | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
| 153 | | * <sequence> |
| 154 | | * <element ref="{}parameter" maxOccurs="unbounded"/> |
| 155 | | * </sequence> |
| 156 | | * </restriction> |
| 157 | | * </complexContent> |
| 158 | | * </complexType> |
| 159 | | * </element> |
| 160 | | * <element name="services"> |
| 161 | | * <complexType> |
| 162 | | * <complexContent> |
| 163 | | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
| 164 | | * <sequence> |
| 165 | | * <element name="sref" maxOccurs="unbounded"> |
| 166 | | * <complexType> |
| 167 | | * <complexContent> |
| 168 | | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
| 169 | | * <attribute name="ref" type="{http://www.w3.org/2001/XMLSchema}string" /> |
| 170 | | * <attribute name="enabled" type="{http://www.w3.org/2001/XMLSchema}boolean" /> |
| 171 | | * </restriction> |
| 172 | | * </complexContent> |
| 173 | | * </complexType> |
| 174 | | * </element> |
| 175 | | * </sequence> |
| 176 | | * </restriction> |
| 177 | | * </complexContent> |
| 178 | | * </complexType> |
| 179 | | * </element> |
| 180 | | * <element name="url" type="{http://www.w3.org/2001/XMLSchema}string"/> |
| 181 | | * <element name="user" type="{http://www.w3.org/2001/XMLSchema}string"/> |
| 182 | | * <element name="password" type="{http://www.w3.org/2001/XMLSchema}string"/> |
| 183 | | * <element name="query" type="{http://www.w3.org/2001/XMLSchema}string"/> |
| 184 | | * </sequence> |
| 185 | | * <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" /> |
| 186 | | * <attribute name="title" type="{http://www.w3.org/2001/XMLSchema}string" /> |
| 187 | | * <attribute name="enable" type="{http://www.w3.org/2001/XMLSchema}boolean" /> |
| 188 | | * <attribute name="type"> |
| 189 | | * <simpleType> |
| 190 | | * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> |
| 191 | | * <enumeration value="web"/> |
| 192 | | * <enumeration value="database"/> |
| 193 | | * </restriction> |
| 194 | | * </simpleType> |
| 195 | | * </attribute> |
| 196 | | * </restriction> |
| 197 | | * </complexContent> |
| 198 | | * </complexType> |
| 199 | | * </pre> |
| 200 | | * |
| 201 | | * |
| 202 | | */ |
| 203 | | @XmlAccessorType(XmlAccessType.FIELD) |
| 204 | | @XmlType(name = "", propOrder = { |
| 205 | | "description", |
| 206 | | "parameters", |
| 207 | | "services", |
| 208 | | "url", |
| 209 | | "user", |
| 210 | | "password", |
| 211 | | "query" |
| 212 | | }) |
| 213 | | public static class Resource { |
| 214 | | |
| 215 | | @XmlElement(required = true) |
| 216 | | protected String description; |
| 217 | | @XmlElement(required = true) |
| 218 | | protected Resources.Resource.Parameters parameters; |
| 219 | | @XmlElement(required = true) |
| 220 | | protected Resources.Resource.Services services; |
| 221 | | @XmlElement(required = true) |
| 222 | | protected String url; |
| 223 | | @XmlElement(required = true) |
| 224 | | protected String user; |
| 225 | | @XmlElement(required = true) |
| 226 | | protected String password; |
| 227 | | @XmlElement(required = true) |
| 228 | | protected String query; |
| 229 | | @XmlAttribute |
| 230 | | protected String name; |
| 231 | | @XmlAttribute |
| 232 | | protected String title; |
| 233 | | @XmlAttribute |
| 234 | | protected Boolean enable; |
| 235 | | @XmlAttribute |
| 236 | | protected String type; |
| 237 | | |
| 238 | | /** |
| 239 | | * Gets the value of the description property. |
| 240 | | * |
| 241 | | * @return |
| 242 | | * possible object is |
| 243 | | * {@link String } |
| 244 | | * |
| 245 | | */ |
| 246 | | public String getDescription() { |
| 247 | | return description; |
| 248 | | } |
| 249 | | |
| 250 | | /** |
| 251 | | * Sets the value of the description property. |
| 252 | | * |
| 253 | | * @param value |
| 254 | | * allowed object is |
| 255 | | * {@link String } |
| 256 | | * |
| 257 | | */ |
| 258 | | public void setDescription(String value) { |
| 259 | | this.description = value; |
| 260 | | } |
| 261 | | |
| 262 | | /** |
| 263 | | * Gets the value of the parameters property. |
| 264 | | * |
| 265 | | * @return |
| 266 | | * possible object is |
| 267 | | * {@link Resources.Resource.Parameters } |
| 268 | | * |
| 269 | | */ |
| 270 | | public Resources.Resource.Parameters getParameters() { |
| 271 | | return parameters; |
| 272 | | } |
| 273 | | |
| 274 | | /** |
| 275 | | * Sets the value of the parameters property. |
| 276 | | * |
| 277 | | * @param value |
| 278 | | * allowed object is |
| 279 | | * {@link Resources.Resource.Parameters } |
| 280 | | * |
| 281 | | */ |
| 282 | | public void setParameters(Resources.Resource.Parameters value) { |
| 283 | | this.parameters = value; |
| 284 | | } |
| 285 | | |
| 286 | | /** |
| 287 | | * Gets the value of the services property. |
| 288 | | * |
| 289 | | * @return |
| 290 | | * possible object is |
| 291 | | * {@link Resources.Resource.Services } |
| 292 | | * |
| 293 | | */ |
| 294 | | public Resources.Resource.Services getServices() { |
| 295 | | return services; |
| 296 | | } |
| 297 | | |
| 298 | | /** |
| 299 | | * Sets the value of the services property. |
| 300 | | * |
| 301 | | * @param value |
| 302 | | * allowed object is |
| 303 | | * {@link Resources.Resource.Services } |
| 304 | | * |
| 305 | | */ |
| 306 | | public void setServices(Resources.Resource.Services value) { |
| 307 | | this.services = value; |
| 308 | | } |
| 309 | | |
| 310 | | /** |
| 311 | | * Gets the value of the url property. |
| 312 | | * |
| 313 | | * @return |
| 314 | | * possible object is |
| 315 | | * {@link String } |
| 316 | | * |
| 317 | | */ |
| 318 | | public String getUrl() { |
| 319 | | return url; |
| 320 | | } |
| 321 | | |
| 322 | | /** |
| 323 | | * Sets the value of the url property. |
| 324 | | * |
| 325 | | * @param value |
| 326 | | * allowed object is |
| 327 | | * {@link String } |
| 328 | | * |
| 329 | | */ |
| 330 | | public void setUrl(String value) { |
| 331 | | this.url = value; |
| 332 | | } |
| 333 | | |
| 334 | | /** |
| 335 | | * Gets the value of the user property. |
| 336 | | * |
| 337 | | * @return |
| 338 | | * possible object is |
| 339 | | * {@link String } |
| 340 | | * |
| 341 | | */ |
| 342 | | public String getUser() { |
| 343 | | return user; |
| 344 | | } |
| 345 | | |
| 346 | | /** |
| 347 | | * Sets the value of the user property. |
| 348 | | * |
| 349 | | * @param value |
| 350 | | * allowed object is |
| 351 | | * {@link String } |
| 352 | | * |
| 353 | | */ |
| 354 | | public void setUser(String value) { |
| 355 | | this.user = value; |
| 356 | | } |
| 357 | | |
| 358 | | /** |
| 359 | | * Gets the value of the password property. |
| 360 | | * |
| 361 | | * @return |
| 362 | | * possible object is |
| 363 | | * {@link String } |
| 364 | | * |
| 365 | | */ |
| 366 | | public String getPassword() { |
| 367 | | return password; |
| 368 | | } |
| 369 | | |
| 370 | | /** |
| 371 | | * Sets the value of the password property. |
| 372 | | * |
| 373 | | * @param value |
| 374 | | * allowed object is |
| 375 | | * {@link String } |
| 376 | | * |
| 377 | | */ |
| 378 | | public void setPassword(String value) { |
| 379 | | this.password = value; |
| 380 | | } |
| 381 | | |
| 382 | | /** |
| 383 | | * Gets the value of the query property. |
| 384 | | * |
| 385 | | * @return |
| 386 | | * possible object is |
| 387 | | * {@link String } |
| 388 | | * |
| 389 | | */ |
| 390 | | public String getQuery() { |
| 391 | | return query; |
| 392 | | } |
| 393 | | |
| 394 | | /** |
| 395 | | * Sets the value of the query property. |
| 396 | | * |
| 397 | | * @param value |
| 398 | | * allowed object is |
| 399 | | * {@link String } |
| 400 | | * |
| 401 | | */ |
| 402 | | public void setQuery(String value) { |
| 403 | | this.query = value; |
| 404 | | } |
| 405 | | |
| 406 | | /** |
| 407 | | * Gets the value of the name property. |
| 408 | | * |
| 409 | | * @return |
| 410 | | * possible object is |
| 411 | | * {@link String } |
| 412 | | * |
| 413 | | */ |
| 414 | | public String getName() { |
| 415 | | return name; |
| 416 | | } |
| 417 | | |
| 418 | | /** |
| 419 | | * Sets the value of the name property. |
| 420 | | * |
| 421 | | * @param value |
| 422 | | * allowed object is |
| 423 | | * {@link String } |
| 424 | | * |
| 425 | | */ |
| 426 | | public void setName(String value) { |
| 427 | | this.name = value; |
| 428 | | } |
| 429 | | |
| 430 | | /** |
| 431 | | * Gets the value of the title property. |
| 432 | | * |
| 433 | | * @return |
| 434 | | * possible object is |
| 435 | | * {@link String } |
| 436 | | * |
| 437 | | */ |
| 438 | | public String getTitle() { |
| 439 | | return title; |
| 440 | | } |
| 441 | | |
| 442 | | /** |
| 443 | | * Sets the value of the title property. |
| 444 | | * |
| 445 | | * @param value |
| 446 | | * allowed object is |
| 447 | | * {@link String } |
| 448 | | * |
| 449 | | */ |
| 450 | | public void setTitle(String value) { |
| 451 | | this.title = value; |
| 452 | | } |
| 453 | | |
| 454 | | /** |
| 455 | | * Gets the value of the enable property. |
| 456 | | * |
| 457 | | * @return |
| 458 | | * possible object is |
| 459 | | * {@link Boolean } |
| 460 | | * |
| 461 | | */ |
| 462 | | public Boolean isEnable() { |
| 463 | | return enable; |
| 464 | | } |
| 465 | | |
| 466 | | /** |
| 467 | | * Sets the value of the enable property. |
| 468 | | * |
| 469 | | * @param value |
| 470 | | * allowed object is |
| 471 | | * {@link Boolean } |
| 472 | | * |
| 473 | | */ |
| 474 | | public void setEnable(Boolean value) { |
| 475 | | this.enable = value; |
| 476 | | } |
| 477 | | |
| 478 | | /** |
| 479 | | * Gets the value of the type property. |
| 480 | | * |
| 481 | | * @return |
| 482 | | * possible object is |
| 483 | | * {@link String } |
| 484 | | * |
| 485 | | */ |
| 486 | | public String getType() { |
| 487 | | return type; |
| 488 | | } |
| 489 | | |
| 490 | | /** |
| 491 | | * Sets the value of the type property. |
| 492 | | * |
| 493 | | * @param value |
| 494 | | * allowed object is |
| 495 | | * {@link String } |
| 496 | | * |
| 497 | | */ |
| 498 | | public void setType(String value) { |
| 499 | | this.type = value; |
| 500 | | } |
| 501 | | |
| 502 | | |
| 503 | | /** |
| 504 | | * <p>Java class for anonymous complex type. |
| 505 | | * |
| 506 | | * <p>The following schema fragment specifies the expected content contained within this class. |
| 507 | | * |
| 508 | | * <pre> |
| 509 | | * <complexType> |
| 510 | | * <complexContent> |
| 511 | | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
| 512 | | * <sequence> |
| 513 | | * <element ref="{}parameter" maxOccurs="unbounded"/> |
| 514 | | * </sequence> |
| 515 | | * </restriction> |
| 516 | | * </complexContent> |
| 517 | | * </complexType> |
| 518 | | * </pre> |
| 519 | | * |
| 520 | | * |
| 521 | | */ |
| 522 | | @XmlAccessorType(XmlAccessType.FIELD) |
| 523 | | @XmlType(name = "", propOrder = { |
| 524 | | "parameter" |
| 525 | | }) |
| 526 | | public static class Parameters { |
| 527 | | |
| 528 | | @XmlElement(required = true) |
| 529 | | protected List<Parameter> parameter; |
| 530 | | |
| 531 | | /** |
| 532 | | * Gets the value of the parameter property. |
| 533 | | * |
| 534 | | * <p> |
| 535 | | * This accessor method returns a reference to the live list, |
| 536 | | * not a snapshot. Therefore any modification you make to the |
| 537 | | * returned list will be present inside the JAXB object. |
| 538 | | * This is why there is not a <CODE>set</CODE> method for the parameter property. |
| 539 | | * |
| 540 | | * <p> |
| 541 | | * For example, to add a new item, do as follows: |
| 542 | | * <pre> |
| 543 | | * getParameter().add(newItem); |
| 544 | | * </pre> |
| 545 | | * |
| 546 | | * |
| 547 | | * <p> |
| 548 | | * Objects of the following type(s) are allowed in the list |
| 549 | | * {@link Parameter } |
| 550 | | * |
| 551 | | * |
| 552 | | */ |
| 553 | | public List<Parameter> getParameter() { |
| 554 | | if (parameter == null) { |
| 555 | | parameter = new ArrayList<Parameter>(); |
| 556 | | } |
| 557 | | return this.parameter; |
| 558 | | } |
| 559 | | |
| 560 | | } |
| 561 | | |
| 562 | | |
| 563 | | /** |
| 564 | | * <p>Java class for anonymous complex type. |
| 565 | | * |
| 566 | | * <p>The following schema fragment specifies the expected content contained within this class. |
| 567 | | * |
| 568 | | * <pre> |
| 569 | | * <complexType> |
| 570 | | * <complexContent> |
| 571 | | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
| 572 | | * <sequence> |
| 573 | | * <element name="sref" maxOccurs="unbounded"> |
| 574 | | * <complexType> |
| 575 | | * <complexContent> |
| 576 | | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
| 577 | | * <attribute name="ref" type="{http://www.w3.org/2001/XMLSchema}string" /> |
| 578 | | * <attribute name="enabled" type="{http://www.w3.org/2001/XMLSchema}boolean" /> |
| 579 | | * </restriction> |
| 580 | | * </complexContent> |
| 581 | | * </complexType> |
| 582 | | * </element> |
| 583 | | * </sequence> |
| 584 | | * </restriction> |
| 585 | | * </complexContent> |
| 586 | | * </complexType> |
| 587 | | * </pre> |
| 588 | | * |
| 589 | | * |
| 590 | | */ |
| 591 | | @XmlAccessorType(XmlAccessType.FIELD) |
| 592 | | @XmlType(name = "", propOrder = { |
| 593 | | "sref" |
| 594 | | }) |
| 595 | | public static class Services { |
| 596 | | |
| 597 | | @XmlElement(required = true) |
| 598 | | protected List<Resources.Resource.Services.Sref> sref; |
| 599 | | |
| 600 | | /** |
| 601 | | * Gets the value of the sref property. |
| 602 | | * |
| 603 | | * <p> |
| 604 | | * This accessor method returns a reference to the live list, |
| 605 | | * not a snapshot. Therefore any modification you make to the |
| 606 | | * returned list will be present inside the JAXB object. |
| 607 | | * This is why there is not a <CODE>set</CODE> method for the sref property. |
| 608 | | * |
| 609 | | * <p> |
| 610 | | * For example, to add a new item, do as follows: |
| 611 | | * <pre> |
| 612 | | * getSref().add(newItem); |
| 613 | | * </pre> |
| 614 | | * |
| 615 | | * |
| 616 | | * <p> |
| 617 | | * Objects of the following type(s) are allowed in the list |
| 618 | | * {@link Resources.Resource.Services.Sref } |
| 619 | | * |
| 620 | | * |
| 621 | | */ |
| 622 | | public List<Resources.Resource.Services.Sref> getSref() { |
| 623 | | if (sref == null) { |
| 624 | | sref = new ArrayList<Resources.Resource.Services.Sref>(); |
| 625 | | } |
| 626 | | return this.sref; |
| 627 | | } |
| 628 | | |
| 629 | | |
| 630 | | /** |
| 631 | | * <p>Java class for anonymous complex type. |
| 632 | | * |
| 633 | | * <p>The following schema fragment specifies the expected content contained within this class. |
| 634 | | * |
| 635 | | * <pre> |
| 636 | | * <complexType> |
| 637 | | * <complexContent> |
| 638 | | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
| 639 | | * <attribute name="ref" type="{http://www.w3.org/2001/XMLSchema}string" /> |
| 640 | | * <attribute name="enabled" type="{http://www.w3.org/2001/XMLSchema}boolean" /> |
| 641 | | * </restriction> |
| 642 | | * </complexContent> |
| 643 | | * </complexType> |
| 644 | | * </pre> |
| 645 | | * |
| 646 | | * |
| 647 | | */ |
| 648 | | @XmlAccessorType(XmlAccessType.FIELD) |
| 649 | | @XmlType(name = "") |
| 650 | | public static class Sref { |
| 651 | | |
| 652 | | @XmlAttribute |
| 653 | | protected String ref; |
| 654 | | @XmlAttribute |
| 655 | | protected Boolean enabled; |
| 656 | | |
| 657 | | /** |
| 658 | | * Gets the value of the ref property. |
| 659 | | * |
| 660 | | * @return |
| 661 | | * possible object is |
| 662 | | * {@link String } |
| 663 | | * |
| 664 | | */ |
| 665 | | public String getRef() { |
| 666 | | return ref; |
| 667 | | } |
| 668 | | |
| 669 | | /** |
| 670 | | * Sets the value of the ref property. |
| 671 | | * |
| 672 | | * @param value |
| 673 | | * allowed object is |
| 674 | | * {@link String } |
| 675 | | * |
| 676 | | */ |
| 677 | | public void setRef(String value) { |
| 678 | | this.ref = value; |
| 679 | | } |
| 680 | | |
| 681 | | /** |
| 682 | | * Gets the value of the enabled property. |
| 683 | | * |
| 684 | | * @return |
| 685 | | * possible object is |
| 686 | | * {@link Boolean } |
| 687 | | * |
| 688 | | */ |
| 689 | | public Boolean isEnabled() { |
| 690 | | return enabled; |
| 691 | | } |
| 692 | | |
| 693 | | /** |
| 694 | | * Sets the value of the enabled property. |
| 695 | | * |
| 696 | | * @param value |
| 697 | | * allowed object is |
| 698 | | * {@link Boolean } |
| 699 | | * |
| 700 | | */ |
| 701 | | public void setEnabled(Boolean value) { |
| 702 | | this.enabled = value; |
| 703 | | } |
| 704 | | |
| 705 | | } |
| 706 | | |
| 707 | | } |
| 708 | | |
| 709 | | } |
| | 103 | public class Resources |
| | 104 | { |
| | 105 | |
| | 106 | @XmlElement(required = true) |
| | 107 | protected List<Resources.Resource> resource; |
| | 108 | |
| | 109 | /** |
| | 110 | * Gets the value of the resource property. |
| | 111 | * |
| | 112 | * <p> |
| | 113 | * This accessor method returns a reference to the live list, not a |
| | 114 | * snapshot. Therefore any modification you make to the returned list will |
| | 115 | * be present inside the JAXB object. This is why there is not a |
| | 116 | * <CODE>set</CODE> method for the resource property. |
| | 117 | * |
| | 118 | * <p> |
| | 119 | * For example, to add a new item, do as follows: |
| | 120 | * |
| | 121 | * <pre> |
| | 122 | * getResource().add(newItem); |
| | 123 | * </pre> |
| | 124 | * |
| | 125 | * |
| | 126 | * <p> |
| | 127 | * Objects of the following type(s) are allowed in the list |
| | 128 | * {@link Resources.Resource } |
| | 129 | * |
| | 130 | * |
| | 131 | */ |
| | 132 | public List<Resources.Resource> getResource() |
| | 133 | { |
| | 134 | if (resource == null) |
| | 135 | { |
| | 136 | resource = new ArrayList<Resources.Resource>(); |
| | 137 | } |
| | 138 | return this.resource; |
| | 139 | } |
| | 140 | |
| | 141 | /** |
| | 142 | * <p> |
| | 143 | * Java class for anonymous complex type. |
| | 144 | * |
| | 145 | * <p> |
| | 146 | * The following schema fragment specifies the expected content contained |
| | 147 | * within this class. |
| | 148 | * |
| | 149 | * <pre> |
| | 150 | * <complexType> |
| | 151 | * <complexContent> |
| | 152 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
| | 153 | * <sequence> |
| | 154 | * <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/> |
| | 155 | * <element name="parameters"> |
| | 156 | * <complexType> |
| | 157 | * <complexContent> |
| | 158 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
| | 159 | * <sequence> |
| | 160 | * <element ref="{}parameter" maxOccurs="unbounded"/> |
| | 161 | * </sequence> |
| | 162 | * </restriction> |
| | 163 | * </complexContent> |
| | 164 | * </complexType> |
| | 165 | * </element> |
| | 166 | * <element name="services"> |
| | 167 | * <complexType> |
| | 168 | * <complexContent> |
| | 169 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
| | 170 | * <sequence> |
| | 171 | * <element name="sref" maxOccurs="unbounded"> |
| | 172 | * <complexType> |
| | 173 | * <complexContent> |
| | 174 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
| | 175 | * <attribute name="ref" type="{http://www.w3.org/2001/XMLSchema}string" /> |
| | 176 | * <attribute name="enabled" type="{http://www.w3.org/2001/XMLSchema}boolean" /> |
| | 177 | * </restriction> |
| | 178 | * </complexContent> |
| | 179 | * </complexType> |
| | 180 | * </element> |
| | 181 | * </sequence> |
| | 182 | * </restriction> |
| | 183 | * </complexContent> |
| | 184 | * </complexType> |
| | 185 | * </element> |
| | 186 | * <element name="url" type="{http://www.w3.org/2001/XMLSchema}string"/> |
| | 187 | * <element name="user" type="{http://www.w3.org/2001/XMLSchema}string"/> |
| | 188 | * <element name="password" type="{http://www.w3.org/2001/XMLSchema}string"/> |
| | 189 | * <element name="query" type="{http://www.w3.org/2001/XMLSchema}string"/> |
| | 190 | * </sequence> |
| | 191 | * <attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" /> |
| | 192 | * <attribute name="title" type="{http://www.w3.org/2001/XMLSchema}string" /> |
| | 193 | * <attribute name="enable" type="{http://www.w3.org/2001/XMLSchema}boolean" /> |
| | 194 | * <attribute name="type"> |
| | 195 | * <simpleType> |
| | 196 | * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> |
| | 197 | * <enumeration value="web"/> |
| | 198 | * <enumeration value="database"/> |
| | 199 | * </restriction> |
| | 200 | * </simpleType> |
| | 201 | * </attribute> |
| | 202 | * </restriction> |
| | 203 | * </complexContent> |
| | 204 | * </complexType> |
| | 205 | * </pre> |
| | 206 | * |
| | 207 | * |
| | 208 | */ |
| | 209 | @XmlAccessorType(XmlAccessType.FIELD) |
| | 210 | @XmlType(name = "", propOrder = { "description", "parameters", "services", |
| | 211 | "url", "user", "password", "query" }) |
| | 212 | public static class Resource |
| | 213 | { |
| | 214 | |
| | 215 | @XmlElement(required = true) |
| | 216 | protected String description; |
| | 217 | @XmlElement(required = true) |
| | 218 | protected Resources.Resource.Parameters parameters; |
| | 219 | @XmlElement(required = true) |
| | 220 | protected Resources.Resource.Services services; |
| | 221 | @XmlElement(required = true) |
| | 222 | protected String url; |
| | 223 | @XmlElement(required = true) |
| | 224 | protected String user; |
| | 225 | @XmlElement(required = true) |
| | 226 | protected String password; |
| | 227 | @XmlElement(required = true) |
| | 228 | protected String query; |
| | 229 | @XmlAttribute |
| | 230 | protected String name; |
| | 231 | @XmlAttribute |
| | 232 | protected String title; |
| | 233 | @XmlAttribute |
| | 234 | protected Boolean enable; |
| | 235 | @XmlAttribute |
| | 236 | protected String type; |
| | 237 | |
| | 238 | /** |
| | 239 | * Gets the value of the description property. |
| | 240 | * |
| | 241 | * @return possible object is {@link String } |
| | 242 | * |
| | 243 | */ |
| | 244 | public String getDescription() |
| | 245 | { |
| | 246 | return description; |
| | 247 | } |
| | 248 | |
| | 249 | /** |
| | 250 | * Sets the value of the description property. |
| | 251 | * |
| | 252 | * @param value |
| | 253 | * allowed object is {@link String } |
| | 254 | * |
| | 255 | */ |
| | 256 | public void setDescription(String value) |
| | 257 | { |
| | 258 | this.description = value; |
| | 259 | } |
| | 260 | |
| | 261 | /** |
| | 262 | * Gets the value of the parameters property. |
| | 263 | * |
| | 264 | * @return possible object is {@link Resources.Resource.Parameters } |
| | 265 | * |
| | 266 | */ |
| | 267 | public Resources.Resource.Parameters getParameters() |
| | 268 | { |
| | 269 | return parameters; |
| | 270 | } |
| | 271 | |
| | 272 | /** |
| | 273 | * Sets the value of the parameters property. |
| | 274 | * |
| | 275 | * @param value |
| | 276 | * allowed object is {@link Resources.Resource.Parameters } |
| | 277 | * |
| | 278 | */ |
| | 279 | public void setParameters(Resources.Resource.Parameters value) |
| | 280 | { |
| | 281 | this.parameters = value; |
| | 282 | } |
| | 283 | |
| | 284 | /** |
| | 285 | * Gets the value of the services property. |
| | 286 | * |
| | 287 | * @return possible object is {@link Resources.Resource.Services } |
| | 288 | * |
| | 289 | */ |
| | 290 | public Resources.Resource.Services getServices() |
| | 291 | { |
| | 292 | return services; |
| | 293 | } |
| | 294 | |
| | 295 | /** |
| | 296 | * Sets the value of the services property. |
| | 297 | * |
| | 298 | * @param value |
| | 299 | * allowed object is {@link Resources.Resource.Services } |
| | 300 | * |
| | 301 | */ |
| | 302 | public void setServices(Resources.Resource.Services value) |
| | 303 | { |
| | 304 | this.services = value; |
| | 305 | } |
| | 306 | |
| | 307 | /** |
| | 308 | * Gets the value of the url property. |
| | 309 | * |
| | 310 | * @return possible object is {@link String } |
| | 311 | * |
| | 312 | */ |
| | 313 | public String getUrl() |
| | 314 | { |
| | 315 | return url; |
| | 316 | } |
| | 317 | |
| | 318 | /** |
| | 319 | * Sets the value of the url property. |
| | 320 | * |
| | 321 | * @param value |
| | 322 | * allowed object is {@link String } |
| | 323 | * |
| | 324 | */ |
| | 325 | public void setUrl(String value) |
| | 326 | { |
| | 327 | this.url = value; |
| | 328 | } |
| | 329 | |
| | 330 | /** |
| | 331 | * Gets the value of the user property. |
| | 332 | * |
| | 333 | * @return possible object is {@link String } |
| | 334 | * |
| | 335 | */ |
| | 336 | public String getUser() |
| | 337 | { |
| | 338 | return user; |
| | 339 | } |
| | 340 | |
| | 341 | /** |
| | 342 | * Sets the value of the user property. |
| | 343 | * |
| | 344 | * @param value |
| | 345 | * allowed object is {@link String } |
| | 346 | * |
| | 347 | */ |
| | 348 | public void setUser(String value) |
| | 349 | { |
| | 350 | this.user = value; |
| | 351 | } |
| | 352 | |
| | 353 | /** |
| | 354 | * Gets the value of the password property. |
| | 355 | * |
| | 356 | * @return possible object is {@link String } |
| | 357 | * |
| | 358 | */ |
| | 359 | public String getPassword() |
| | 360 | { |
| | 361 | return password; |
| | 362 | } |
| | 363 | |
| | 364 | /** |
| | 365 | * Sets the value of the password property. |
| | 366 | * |
| | 367 | * @param value |
| | 368 | * allowed object is {@link String } |
| | 369 | * |
| | 370 | */ |
| | 371 | public void setPassword(String value) |
| | 372 | { |
| | 373 | this.password = value; |
| | 374 | } |
| | 375 | |
| | 376 | /** |
| | 377 | * Gets the value of the query property. |
| | 378 | * |
| | 379 | * @return possible object is {@link String } |
| | 380 | * |
| | 381 | */ |
| | 382 | public String getQuery() |
| | 383 | { |
| | 384 | return query; |
| | 385 | } |
| | 386 | |
| | 387 | /** |
| | 388 | * Sets the value of the query property. |
| | 389 | * |
| | 390 | * @param value |
| | 391 | * allowed object is {@link String } |
| | 392 | * |
| | 393 | */ |
| | 394 | public void setQuery(String value) |
| | 395 | { |
| | 396 | this.query = value; |
| | 397 | } |
| | 398 | |
| | 399 | /** |
| | 400 | * Gets the value of the name property. |
| | 401 | * |
| | 402 | * @return possible object is {@link String } |
| | 403 | * |
| | 404 | */ |
| | 405 | public String getName() |
| | 406 | { |
| | 407 | return name; |
| | 408 | } |
| | 409 | |
| | 410 | /** |
| | 411 | * Sets the value of the name property. |
| | 412 | * |
| | 413 | * @param value |
| | 414 | * allowed object is {@link String } |
| | 415 | * |
| | 416 | */ |
| | 417 | public void setName(String value) |
| | 418 | { |
| | 419 | this.name = value; |
| | 420 | } |
| | 421 | |
| | 422 | /** |
| | 423 | * Gets the value of the title property. |
| | 424 | * |
| | 425 | * @return possible object is {@link String } |
| | 426 | * |
| | 427 | */ |
| | 428 | public String getTitle() |
| | 429 | { |
| | 430 | return title; |
| | 431 | } |
| | 432 | |
| | 433 | /** |
| | 434 | * Sets the value of the title property. |
| | 435 | * |
| | 436 | * @param value |
| | 437 | * allowed object is {@link String } |
| | 438 | * |
| | 439 | */ |
| | 440 | public void setTitle(String value) |
| | 441 | { |
| | 442 | this.title = value; |
| | 443 | } |
| | 444 | |
| | 445 | /** |
| | 446 | * Gets the value of the enable property. |
| | 447 | * |
| | 448 | * @return possible object is {@link Boolean } |
| | 449 | * |
| | 450 | */ |
| | 451 | public Boolean isEnable() |
| | 452 | { |
| | 453 | return enable; |
| | 454 | } |
| | 455 | |
| | 456 | /** |
| | 457 | * Sets the value of the enable property. |
| | 458 | * |
| | 459 | * @param value |
| | 460 | * allowed object is {@link Boolean } |
| | 461 | * |
| | 462 | */ |
| | 463 | public void setEnable(Boolean value) |
| | 464 | { |
| | 465 | this.enable = value; |
| | 466 | } |
| | 467 | |
| | 468 | /** |
| | 469 | * Gets the value of the type property. |
| | 470 | * |
| | 471 | * @return possible object is {@link String } |
| | 472 | * |
| | 473 | */ |
| | 474 | public String getType() |
| | 475 | { |
| | 476 | return type; |
| | 477 | } |
| | 478 | |
| | 479 | /** |
| | 480 | * Sets the value of the type property. |
| | 481 | * |
| | 482 | * @param value |
| | 483 | * allowed object is {@link String } |
| | 484 | * |
| | 485 | */ |
| | 486 | public void setType(String value) |
| | 487 | { |
| | 488 | this.type = value; |
| | 489 | } |
| | 490 | |
| | 491 | /** |
| | 492 | * <p> |
| | 493 | * Java class for anonymous complex type. |
| | 494 | * |
| | 495 | * <p> |
| | 496 | * The following schema fragment specifies the expected content |
| | 497 | * contained within this class. |
| | 498 | * |
| | 499 | * <pre> |
| | 500 | * <complexType> |
| | 501 | * <complexContent> |
| | 502 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
| | 503 | * <sequence> |
| | 504 | * <element ref="{}parameter" maxOccurs="unbounded"/> |
| | 505 | * </sequence> |
| | 506 | * </restriction> |
| | 507 | * </complexContent> |
| | 508 | * </complexType> |
| | 509 | * </pre> |
| | 510 | * |
| | 511 | * |
| | 512 | */ |
| | 513 | @XmlAccessorType(XmlAccessType.FIELD) |
| | 514 | @XmlType(name = "", propOrder = { "parameter" }) |
| | 515 | public static class Parameters |
| | 516 | { |
| | 517 | |
| | 518 | @XmlElement(required = true) |
| | 519 | protected List<Parameter> parameter; |
| | 520 | |
| | 521 | /** |
| | 522 | * Gets the value of the parameter property. |
| | 523 | * |
| | 524 | * <p> |
| | 525 | * This accessor method returns a reference to the live list, not a |
| | 526 | * snapshot. Therefore any modification you make to the returned |
| | 527 | * list will be present inside the JAXB object. This is why there is |
| | 528 | * not a <CODE>set</CODE> method for the parameter property. |
| | 529 | * |
| | 530 | * <p> |
| | 531 | * For example, to add a new item, do as follows: |
| | 532 | * |
| | 533 | * <pre> |
| | 534 | * getParameter().add(newItem); |
| | 535 | * </pre> |
| | 536 | * |
| | 537 | * |
| | 538 | * <p> |
| | 539 | * Objects of the following type(s) are allowed in the list |
| | 540 | * {@link Parameter } |
| | 541 | * |
| | 542 | * |
| | 543 | */ |
| | 544 | public List<Parameter> getParameter() |
| | 545 | { |
| | 546 | if (parameter == null) |
| | 547 | { |
| | 548 | parameter = new ArrayList<Parameter>(); |
| | 549 | } |
| | 550 | return this.parameter; |
| | 551 | } |
| | 552 | |
| | 553 | } |
| | 554 | |
| | 555 | /** |
| | 556 | * <p> |
| | 557 | * Java class for anonymous complex type. |
| | 558 | * |
| | 559 | * <p> |
| | 560 | * The following schema fragment specifies the expected content |
| | 561 | * contained within this class. |
| | 562 | * |
| | 563 | * <pre> |
| | 564 | * <complexType> |
| | 565 | * <complexContent> |
| | 566 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
| | 567 | * <sequence> |
| | 568 | * <element name="sref" maxOccurs="unbounded"> |
| | 569 | * <complexType> |
| | 570 | * <complexContent> |
| | 571 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> |
| | 572 | * <attribute name="ref" type="{http://www.w3.org/2001/XMLSchema}string" /> |
| | 573 | * <attribute name="enabled" type="{http://www.w3.org/2001/XMLSchema}boolean" /> |
| | 574 | * </restriction> |
| | 575 | * </complexContent> |
| | 576 | * </complexType> |
| | 577 | * </element> |
| | 578 | * </sequence> |
| | 579 | * </restriction> |
| | 580 | * </complexContent> |
| | 581 | * </complexType> |
| | 582 | * </pre> |
| | 583 | * |
| | 584 | * |
| | 585 | */ |
| | 586 | @XmlAccessorType(XmlAccessType.FIELD) |
| | 587 | @XmlType(name = "", propOrder = { "sref" }) |
| | 588 | public static class Services |
| | 589 | { |
| | 590 | |
| | 591 | @XmlElement(required = true) |
| | 592 | protected List<Sref> sref; |
| | 593 | |
| | 594 | /** |
| | 595 | * Gets the value of the sref property. |
| | 596 | * |
| | 597 | * <p> |
| | 598 | * This accessor method returns a reference to the live list, not a |
| | 599 | * snapshot. Therefore any modification you make to the returned |
| | 600 | * list will be present inside the JAXB object. This is why there is |
| | 601 | * not a <CODE>set</CODE> method for the sref property. |
| | 602 | * |
| | 603 | * <p> |
| | 604 | * For example, to add a new item, do as follows: |
| | 605 | * |
| | 606 | * <pre> |
| | 607 | * getSref().add(newItem); |
| | 608 | * </pre> |
| | 609 | * |
| | 610 | * |
| | 611 | * <p> |
| | 612 | * Objects of the following type(s) are allowed in the list |
| | 613 | * {@link Resources.Resource.Services.Sref } |
| | 614 | * |
| | 615 | * |
| | 616 | */ |
| | 617 | public List<Sref> getSref() |
| | 618 | { |
| | 619 | if (sref == null) |
| | 620 | { |
| | 621 | sref = new ArrayList<Sref>(); |
| | 622 | } |
| | 623 | return this.sref; |
| | 624 | } |
| | 625 | |
| | 626 | |
| | 627 | } |
| | 628 | |
| | 629 | } |