1 5 package org.exoplatform.services.portletcontainer.pci.model; 6 7 import java.util.*; 8 14 public class InitParam { 15 private List description; 16 private String name; 17 private String value; 18 19 public InitParam() { 20 description = new ArrayList(); 21 } 22 23 public List getDescription() { 24 return description; 25 } 26 27 public void setDescription(List description) { 28 this.description = description; 29 } 30 31 public void addDescription(Description desc) { 32 this.description.add(desc); 33 } 34 35 public String getName() { 36 return name; 37 } 38 39 public void setName(String name) { 40 this.name = name; 41 } 42 43 public String getValue() { 44 return value; 45 } 46 47 public void setValue(String value) { 48 this.value = value; 49 } 50 } | Popular Tags |