@Column (name = "contact_comment")
private String contactComment;
- /**
- * Id number
- */
- @Id
- @GeneratedValue (strategy = GenerationType.IDENTITY)
- @Column (name = "contact_id", length = 20, nullable = false, updatable = false)
- private Long contactId;
-
/**
* Country code
*/
@Column (name = "contact_house_number", length = 5, nullable = false)
private Short contactHouseNumber;
+ /**
+ * Id number
+ */
+ @Id
+ @GeneratedValue (strategy = GenerationType.IDENTITY)
+ @Column (name = "contact_id", length = 20, nullable = false, updatable = false)
+ private Long contactId;
+
/**
* Flag whether this contact is user's own data
*/
this.contactComment = contactComment;
}
- @Override
- public Long getContactId () {
- return this.contactId;
- }
-
- @Override
- public void setContactId (final Long contactId) {
- this.contactId = contactId;
- }
-
@Override
public Country getContactCountry () {
return this.contactCountry;
this.contactHouseNumber = contactHouseNumber;
}
+ @Override
+ public Long getContactId () {
+ return this.contactId;
+ }
+ @Override
+ public void setContactId (final Long contactId) {
+ this.contactId = contactId;
+ }
+
@Override
public void setContactOwnContact (final Boolean contactOwnContact) {
this.contactOwnContact = contactOwnContact;