Class RepositoryMapping
- java.lang.Object
- 
- gen.core.project.RepositoryMapping
 
- 
 public class RepositoryMapping extends java.lang.ObjectDirectory mapping to repository. Local and Repository attributes can be directory and files. In case of directory it should be ended by '/'Java class for RepositoryMapping complex type. The following schema fragment specifies the expected content contained within this class. <complexType name="RepositoryMapping"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="excludes" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> <element name="includes" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="local" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="repository" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
- 
- 
Constructor SummaryConstructors Constructor Description RepositoryMapping()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<java.lang.String>getExcludes()Gets the value of the excludes property.java.util.List<java.lang.String>getIncludes()Gets the value of the includes property.java.lang.StringgetLocal()Gets the value of the local property.java.lang.StringgetRepository()Gets the value of the repository property.voidsetLocal(java.lang.String value)Sets the value of the local property.voidsetRepository(java.lang.String value)Sets the value of the repository property.
 
- 
- 
- 
Method Detail- 
getExcludespublic java.util.List<java.lang.String> getExcludes() Gets the value of the excludes property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a setmethod for the excludes property.For example, to add a new item, do as follows: getExcludes().add(newItem);Objects of the following type(s) are allowed in the list String
 - 
getIncludespublic java.util.List<java.lang.String> getIncludes() Gets the value of the includes property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a setmethod for the includes property.For example, to add a new item, do as follows: getIncludes().add(newItem);Objects of the following type(s) are allowed in the list String
 - 
getLocalpublic java.lang.String getLocal() Gets the value of the local property.- Returns:
- possible object is
     String
 
 - 
setLocalpublic void setLocal(java.lang.String value) Sets the value of the local property.- Parameters:
- value- allowed object is- String
 
 - 
getRepositorypublic java.lang.String getRepository() Gets the value of the repository property.- Returns:
- possible object is
     String
 
 - 
setRepositorypublic void setRepository(java.lang.String value) Sets the value of the repository property.- Parameters:
- value- allowed object is- String
 
 
- 
 
-