1 9 package org.jboss.portal.portlet.metadata; 10 11 import java.util.Map ; 12 13 public class UserDataConstraintMetaData 14 { 15 private Map descriptions; 16 private TransportGuarantee transportGuarantee; 17 18 public UserDataConstraintMetaData() 19 { 20 } 21 22 public Map getDescriptions() 23 { 24 return descriptions; 25 } 26 27 public void setDescriptions(Map descriptions) 28 { 29 this.descriptions = descriptions; 30 } 31 32 public TransportGuarantee getTransportGuarantee() 33 { 34 return transportGuarantee; 35 } 36 37 public void setTransportGuarantee(TransportGuarantee transportGuarantee) 38 { 39 this.transportGuarantee = transportGuarantee; 40 } 41 } 42 | Popular Tags |