1 17 package org.alfresco.service.cmr.view; 18 19 import org.alfresco.service.namespace.NamespaceService; 20 21 22 29 public class ExporterCrawlerParameters 30 { 31 32 private Location exportFrom = null; 33 private boolean crawlSelf = false; 34 private boolean crawlChildNodes = true; 35 private boolean crawlAssociations = true; 36 private boolean crawlContent = true; 37 private boolean crawlNullProperties = true; 38 private String [] excludeNamespaceURIs = new String [] { NamespaceService.REPOSITORY_VIEW_1_0_URI }; 39 40 41 46 public boolean isCrawlChildNodes() 47 { 48 return crawlChildNodes; 49 } 50 51 56 public void setCrawlChildNodes(boolean crawlChildNodes) 57 { 58 this.crawlChildNodes = crawlChildNodes; 59 } 60 61 66 public boolean isCrawlAssociations() 67 { 68 return crawlAssociations; 69 } 70 71 76 public void setCrawlAssociations(boolean crawlAssociations) 77 { 78 this.crawlAssociations = crawlAssociations; 79 } 80 81 86 public boolean isCrawlContent() 87 { 88 return crawlContent; 89 } 90 91 96 public void setCrawlContent(boolean crawlContent) 97 { 98 this.crawlContent = crawlContent; 99 } 100 101 106 public boolean isCrawlSelf() 107 { 108 return crawlSelf; 109 } 110 111 116 public void setCrawlSelf(boolean crawlSelf) 117 { 118 this.crawlSelf = crawlSelf; 119 } 120 121 126 public boolean isCrawlNullProperties() 127 { 128 return crawlNullProperties; 129 } 130 131 136 public void setCrawlNullProperties(boolean crawlNullProperties) 137 { 138 this.crawlNullProperties = crawlNullProperties; 139 } 140 141 146 public String [] getExcludeNamespaceURIs() 147 { 148 return excludeNamespaceURIs; 149 } 150 151 156 public void setExcludeNamespaceURIs(String [] excludeNamespaceURIs) 157 { 158 this.excludeNamespaceURIs = excludeNamespaceURIs; 159 } 160 161 166 public Location getExportFrom() 167 { 168 return exportFrom; 169 } 170 171 176 public void setExportFrom(Location exportFrom) 177 { 178 this.exportFrom = exportFrom; 179 } 180 181 } 182 | Popular Tags |