Package org.alfresco.repo.audit.model._3
Class Audit
- java.lang.Object
-
- org.alfresco.repo.audit.model._3.Audit
-
public class Audit extends java.lang.ObjectJava class for Audit complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="Audit"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="DataExtractors" type="{http://www.alfresco.org/repo/audit/model/3.2}DataExtractors" minOccurs="0"/> <element name="DataGenerators" type="{http://www.alfresco.org/repo/audit/model/3.2}DataGenerators" minOccurs="0"/> <element name="PathMappings" type="{http://www.alfresco.org/repo/audit/model/3.2}PathMappings" minOccurs="0"/> <element name="Application" type="{http://www.alfresco.org/repo/audit/model/3.2}Application" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<Application>applicationprotected DataExtractorsdataExtractorsprotected DataGeneratorsdataGeneratorsprotected PathMappingspathMappings
-
Constructor Summary
Constructors Constructor Description Audit()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<Application>getApplication()Gets the value of the application property.DataExtractorsgetDataExtractors()Gets the value of the dataExtractors property.DataGeneratorsgetDataGenerators()Gets the value of the dataGenerators property.PathMappingsgetPathMappings()Gets the value of the pathMappings property.voidsetDataExtractors(DataExtractors value)Sets the value of the dataExtractors property.voidsetDataGenerators(DataGenerators value)Sets the value of the dataGenerators property.voidsetPathMappings(PathMappings value)Sets the value of the pathMappings property.
-
-
-
Field Detail
-
dataExtractors
protected DataExtractors dataExtractors
-
dataGenerators
protected DataGenerators dataGenerators
-
pathMappings
protected PathMappings pathMappings
-
application
protected java.util.List<Application> application
-
-
Method Detail
-
getDataExtractors
public DataExtractors getDataExtractors()
Gets the value of the dataExtractors property.- Returns:
- possible object is
DataExtractors
-
setDataExtractors
public void setDataExtractors(DataExtractors value)
Sets the value of the dataExtractors property.- Parameters:
value- allowed object isDataExtractors
-
getDataGenerators
public DataGenerators getDataGenerators()
Gets the value of the dataGenerators property.- Returns:
- possible object is
DataGenerators
-
setDataGenerators
public void setDataGenerators(DataGenerators value)
Sets the value of the dataGenerators property.- Parameters:
value- allowed object isDataGenerators
-
getPathMappings
public PathMappings getPathMappings()
Gets the value of the pathMappings property.- Returns:
- possible object is
PathMappings
-
setPathMappings
public void setPathMappings(PathMappings value)
Sets the value of the pathMappings property.- Parameters:
value- allowed object isPathMappings
-
getApplication
public java.util.List<Application> getApplication()
Gets the value of the application 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 application property.For example, to add a new item, do as follows:
getApplication().add(newItem);Objects of the following type(s) are allowed in the list
Application
-
-