ContactGroupObject.java :  » Web-Mail » claros-intouch2-2.2-beta » org » claros » intouch » contacts » models » Java Open Source

Java Open Source » Web Mail » claros intouch2 2.2 beta 
claros intouch2 2.2 beta » org » claros » intouch » contacts » models » ContactGroupObject.java
package org.claros.intouch.contacts.models;

public class ContactGroupObject {
  private Long id;
  private String username;
  private Long groupId;
  private Long contactId;

  public Long getContactId() {
    return contactId;
  }
  public void setContactId(Long contactId) {
    this.contactId = contactId;
  }
  public Long getGroupId() {
    return groupId;
  }
  public void setGroupId(Long groupId) {
    this.groupId = groupId;
  }
  public Long getId() {
    return id;
  }
  public void setId(Long id) {
    this.id = id;
  }
  public String getUsername() {
    return username;
  }
  public void setUsername(String username) {
    this.username = username;
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.