From 5e6778f5a74284ce02501bf9ef30a964b67f096c Mon Sep 17 00:00:00 2001 From: Roshan Thomas Date: Fri, 11 Mar 2016 23:01:45 -0500 Subject: [PATCH] Formatting --- .../com/baeldung/spring/form/Employee.java | 58 +++++++++---------- 1 file changed, 29 insertions(+), 29 deletions(-) diff --git a/spring-mvc-xml/src/main/java/com/baeldung/spring/form/Employee.java b/spring-mvc-xml/src/main/java/com/baeldung/spring/form/Employee.java index 1fc7b82123..66b2e9f185 100644 --- a/spring-mvc-xml/src/main/java/com/baeldung/spring/form/Employee.java +++ b/spring-mvc-xml/src/main/java/com/baeldung/spring/form/Employee.java @@ -7,43 +7,43 @@ import javax.xml.bind.annotation.XmlRootElement; @XmlRootElement public class Employee { - private long id; + private long id; - @NotNull - @Size(min = 1) - private String name; - @NotNull - @Size(min = 1) - private String contactNumber; + @NotNull + @Size(min = 1) + private String name; + @NotNull + @Size(min = 1) + private String contactNumber; - public Employee() { - super(); - } + public Employee() { + super(); + } - // + // - public String getName() { - return name; - } + public String getName() { + return name; + } - public void setName(final String name) { - this.name = name; - } + public void setName(final String name) { + this.name = name; + } - public long getId() { - return id; - } + public long getId() { + return id; + } - public void setId(final long id) { - this.id = id; - } + public void setId(final long id) { + this.id = id; + } - public String getContactNumber() { - return contactNumber; - } + public String getContactNumber() { + return contactNumber; + } - public void setContactNumber(final String contactNumber) { - this.contactNumber = contactNumber; - } + public void setContactNumber(final String contactNumber) { + this.contactNumber = contactNumber; + } }