1 23 24 package org.infoglue.deliver.applications.databeans; 25 26 27 32 33 public class ComponentRestriction 34 { 35 private String type; 36 private String slotId; 37 private String arguments; 38 39 public String getArguments() 40 { 41 return arguments; 42 } 43 44 public void setArguments(String arguments) 45 { 46 this.arguments = arguments; 47 } 48 49 public String getSlotId() 50 { 51 return slotId; 52 } 53 54 public void setSlotId(String slotId) 55 { 56 this.slotId = slotId; 57 } 58 59 public String getType() 60 { 61 return type; 62 } 63 64 public void setType(String type) 65 { 66 this.type = type; 67 } 68 } 69 | Popular Tags |