1 23 24 package org.infoglue.cms.applications.contenttool.wizards.actions; 25 26 import java.util.HashMap ; 27 import java.util.Map ; 28 29 import org.infoglue.cms.entities.content.Content; 30 import org.infoglue.cms.entities.content.impl.simple.ContentImpl; 31 32 38 39 public class CreateContentWizardInfoBean 40 { 41 private Integer parentContentId = null; 42 private Integer repositoryId = null; 43 private Integer contentTypeDefinitionId = null; 44 private Content content = new ContentImpl(); 45 private Map contentVersions = new HashMap (); 46 private Map digitalAssets = new HashMap (); 47 private String returnAddress = null; 48 49 public Content getContent() 50 { 51 return content; 52 } 53 54 public Integer getParentContentId() 55 { 56 return parentContentId; 57 } 58 59 public Integer getRepositoryId() 60 { 61 return repositoryId; 62 } 63 64 public void setContent(Content content) 65 { 66 this.content = content; 67 } 68 69 public void setParentContentId(Integer parentContentId) 70 { 71 this.parentContentId = parentContentId; 72 } 73 74 public void setRepositoryId(Integer repositoryId) 75 { 76 this.repositoryId = repositoryId; 77 } 78 79 public Integer getContentTypeDefinitionId() 80 { 81 return this.contentTypeDefinitionId; 82 } 83 84 public void setContentTypeDefinitionId(Integer contentTypeDefinitionId) 85 { 86 this.contentTypeDefinitionId = contentTypeDefinitionId; 87 } 88 89 public Map getDigitalAssets() 90 { 91 return this.digitalAssets; 92 } 93 94 public void setDigitalAssets(Map digitalAssets) 95 { 96 this.digitalAssets = digitalAssets; 97 } 98 99 public Map getContentVersions() 100 { 101 return this.contentVersions; 102 } 103 104 public void setContentVersions(Map contentVersions) 105 { 106 this.contentVersions = contentVersions; 107 } 108 109 public String getReturnAddress() 110 { 111 return this.returnAddress; 112 } 113 114 public void setReturnAddress(String returnAddress) 115 { 116 this.returnAddress = returnAddress; 117 } 118 119 } 120 | Popular Tags |