1 22 package org.jboss.system.metadata; 23 24 import java.util.List ; 25 26 import org.jboss.mx.loading.LoaderRepositoryFactory.LoaderRepositoryConfig; 27 import org.w3c.dom.Element ; 28 29 35 public class ServiceDeployment 36 { 37 38 private String name; 39 40 41 private List <ServiceMetaData> services; 42 43 44 private Element config; 45 46 47 private LoaderRepositoryConfig loaderRepositoryConfig; 48 49 50 private List <ServiceDeploymentClassPath> classPaths; 51 52 57 public String getName() 58 { 59 return name; 60 } 61 62 67 public void setName(String name) 68 { 69 this.name = name; 70 } 71 72 77 public List <ServiceMetaData> getServices() 78 { 79 return services; 80 } 81 82 87 public void setServices(List <ServiceMetaData> services) 88 { 89 this.services = services; 90 } 91 92 97 public Element getConfig() 98 { 99 return config; 100 } 101 102 107 public void setConfig(Element config) 108 { 109 this.config = config; 110 } 111 112 117 public LoaderRepositoryConfig getLoaderRepositoryConfig() 118 { 119 return loaderRepositoryConfig; 120 } 121 122 127 public void setLoaderRepositoryConfig(LoaderRepositoryConfig loaderRepositoryConfig) 128 { 129 this.loaderRepositoryConfig = loaderRepositoryConfig; 130 } 131 132 137 public List <ServiceDeploymentClassPath> getClassPaths() 138 { 139 return classPaths; 140 } 141 142 147 public void setClassPaths(List <ServiceDeploymentClassPath> classPaths) 148 { 149 this.classPaths = classPaths; 150 } 151 } 152 | Popular Tags |