01: package org.claros.intouch.contacts.models;
02:
03: public class ContactGroupObject {
04: private Long id;
05: private String username;
06: private Long groupId;
07: private Long contactId;
08:
09: public Long getContactId() {
10: return contactId;
11: }
12:
13: public void setContactId(Long contactId) {
14: this .contactId = contactId;
15: }
16:
17: public Long getGroupId() {
18: return groupId;
19: }
20:
21: public void setGroupId(Long groupId) {
22: this .groupId = groupId;
23: }
24:
25: public Long getId() {
26: return id;
27: }
28:
29: public void setId(Long id) {
30: this .id = id;
31: }
32:
33: public String getUsername() {
34: return username;
35: }
36:
37: public void setUsername(String username) {
38: this.username = username;
39: }
40: }
|