1 package org.jahia.webapps.addressbook; 2 3 import java.util.*; 4 5 import org.jahia.tools.*; 6 7 8 14 public class Communication 15 { 16 private int id=0; 17 private String name; 18 19 public Communication() 20 { 21 22 } 23 24 25 public Communication(int id) 26 { 27 this.id = id; 28 } 29 30 public Communication(int id,String name) 31 { 32 this.id = id; 33 this.name = name; 34 } 35 36 public int getId() 37 { 38 return this.id; 39 } 40 41 public void setName(String name) 42 { 43 this.name = name; 44 } 45 46 public String getName() 47 { 48 return this.name; 49 } 50 } 51 | Popular Tags |