1 9 package org.jboss.portal.portlet.metadata; 10 11 import java.util.Map ; 12 13 public class ParameterMetaData 14 { 15 private String name; 16 private String value; 17 private Map descriptions; 18 19 public ParameterMetaData() 20 { 21 } 22 23 public String getName() 24 { 25 return name; 26 } 27 28 public void setName(String name) 29 { 30 this.name = name; 31 } 32 33 public String getValue() 34 { 35 return value; 36 } 37 38 public void setValue(String value) 39 { 40 this.value = value; 41 } 42 43 public Map getDescriptions() 44 { 45 return descriptions; 46 } 47 48 public void setDescriptions(Map descriptions) 49 { 50 this.descriptions = descriptions; 51 } 52 } 53 | Popular Tags |