22
33import javax .xml .bind .annotation .XmlElement ;
44
5- import org .apache .commons .lang .builder .ToStringBuilder ;
5+ import org .apache .commons .lang3 .builder .ToStringBuilder ;
66import org .apache .cxf .xjc .runtime .JAXBToStringStyle ;
77
88import com .exacttarget .fuelsdk .annotations .ExternalName ;
99
1010/**
11- * An <code>ETApiProperty</code> represents API property name value pair in
12- * the Salesforce Marketing Cloud API.
11+ * An <code>ETApiProperty</code> represents API property name value pair in
12+ * the Salesforce Marketing Cloud API.
1313 */
1414public class ETApiProperty {
1515
16- @ ExternalName ("Name" )
16+ @ ExternalName ("Name" )
1717 protected String name ;
18- @ ExternalName ("Value" )
18+ @ ExternalName ("Value" )
1919 protected String value ;
2020
2121 /**
2222 * Gets the value of the name property.
23- *
23+ *
2424 * @return
2525 * possible object is
2626 * {@link String }
27- *
27+ *
2828 */
2929 public String getName () {
3030 return name ;
3131 }
3232
3333 /**
3434 * Sets the value of the name property.
35- *
35+ *
3636 * @param value
3737 * allowed object is
3838 * {@link String }
39- *
39+ *
4040 */
4141 public void setName (String value ) {
4242 this .name = value ;
4343 }
4444
4545 /**
4646 * Gets the value of the value property.
47- *
47+ *
4848 * @return
4949 * possible object is
5050 * {@link String }
51- *
51+ *
5252 */
5353 public String getValue () {
5454 return value ;
5555 }
5656
5757 /**
5858 * Sets the value of the value property.
59- *
59+ *
6060 * @param value
6161 * allowed object is
6262 * {@link String }
63- *
63+ *
6464 */
6565 public void setValue (String value ) {
6666 this .value = value ;
@@ -69,11 +69,11 @@ public void setValue(String value) {
6969 /**
7070 * Generates a String representation of the contents of this type.
7171 * This is an extension method, produced by the 'ts' xjc plugin
72- *
72+ *
7373 */
7474 @ Override
7575 public String toString () {
7676 return ToStringBuilder .reflectionToString (this , JAXBToStringStyle .DEFAULT_STYLE );
7777 }
7878
79- }
79+ }
0 commit comments