/servers/jain-slee/core/components/descriptors/src/main/java/org/mobicents/slee/container/component/deployment/jaxb/slee/sbb/SbbAlias.java

http://mobicents.googlecode.com/
Java | 109 lines | 35 code | 12 blank | 62 comment | 0 complexity | b61a9f64ad5400a73a33c6456ed87f6d MD5 | raw file

✨ Summary
  1. /*
  2. * JBoss, Home of Professional Open Source
  3. * Copyright 2011, Red Hat, Inc. and individual contributors
  4. * by the @authors tag. See the copyright.txt in the distribution for a
  5. * full listing of individual contributors.
  6. *
  7. * This is free software; you can redistribute it and/or modify it
  8. * under the terms of the GNU Lesser General Public License as
  9. * published by the Free Software Foundation; either version 2.1 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This software is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this software; if not, write to the Free
  19. * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  20. * 02110-1301 USA, or see the FSF site: http://www.fsf.org.
  21. */
  22. //
  23. // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1-b02-fcs
  24. // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
  25. // Any modifications to this file will be lost upon recompilation of the source schema.
  26. // Generated on: 2010.03.17 at 04:44:01 PM WET
  27. //
  28. package org.mobicents.slee.container.component.deployment.jaxb.slee.sbb;
  29. import javax.xml.bind.annotation.XmlAccessType;
  30. import javax.xml.bind.annotation.XmlAccessorType;
  31. import javax.xml.bind.annotation.XmlAttribute;
  32. import javax.xml.bind.annotation.XmlID;
  33. import javax.xml.bind.annotation.XmlRootElement;
  34. import javax.xml.bind.annotation.XmlType;
  35. import javax.xml.bind.annotation.XmlValue;
  36. import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
  37. import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
  38. /**
  39. *
  40. */
  41. @XmlAccessorType(XmlAccessType.FIELD)
  42. @XmlType(name = "", propOrder = {
  43. "value"
  44. })
  45. @XmlRootElement(name = "sbb-alias")
  46. public class SbbAlias {
  47. @XmlAttribute
  48. @XmlJavaTypeAdapter(CollapsedStringAdapter.class)
  49. @XmlID
  50. protected String id;
  51. @XmlValue
  52. protected String value;
  53. /**
  54. * Gets the value of the id property.
  55. *
  56. * @return
  57. * possible object is
  58. * {@link String }
  59. *
  60. */
  61. public String getId() {
  62. return id;
  63. }
  64. /**
  65. * Sets the value of the id property.
  66. *
  67. * @param value
  68. * allowed object is
  69. * {@link String }
  70. *
  71. */
  72. public void setId(String value) {
  73. this.id = value;
  74. }
  75. /**
  76. * Gets the value of the value property.
  77. *
  78. * @return
  79. * possible object is
  80. * {@link String }
  81. *
  82. */
  83. public String getvalue() {
  84. return value;
  85. }
  86. /**
  87. * Sets the value of the value property.
  88. *
  89. * @param value
  90. * allowed object is
  91. * {@link String }
  92. *
  93. */
  94. public void setvalue(String value) {
  95. this.value = value;
  96. }
  97. }