Class AuditPath
- java.lang.Object
-
- org.alfresco.repo.audit.model._3.KeyedAuditDefinition
-
- org.alfresco.repo.audit.model._3.AuditPath
-
- Direct Known Subclasses:
Application
public class AuditPath extends KeyedAuditDefinition
Java class for AuditPath complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="AuditPath"> <complexContent> <extension base="{http://www.alfresco.org/repo/audit/model/3.2}KeyedAuditDefinition"> <sequence> <element name="RecordValue" type="{http://www.alfresco.org/repo/audit/model/3.2}RecordValue" maxOccurs="unbounded" minOccurs="0"/> <element name="GenerateValue" type="{http://www.alfresco.org/repo/audit/model/3.2}GenerateValue" maxOccurs="unbounded" minOccurs="0"/> <element name="AuditPath" type="{http://www.alfresco.org/repo/audit/model/3.2}AuditPath" maxOccurs="unbounded" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<AuditPath>auditPathprotected java.util.List<GenerateValue>generateValueprotected java.util.List<RecordValue>recordValue-
Fields inherited from class org.alfresco.repo.audit.model._3.KeyedAuditDefinition
key
-
-
Constructor Summary
Constructors Constructor Description AuditPath()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<AuditPath>getAuditPath()Gets the value of the auditPath property.java.util.List<GenerateValue>getGenerateValue()Gets the value of the generateValue property.java.util.List<RecordValue>getRecordValue()Gets the value of the recordValue property.-
Methods inherited from class org.alfresco.repo.audit.model._3.KeyedAuditDefinition
getKey, setKey
-
-
-
-
Field Detail
-
recordValue
protected java.util.List<RecordValue> recordValue
-
generateValue
protected java.util.List<GenerateValue> generateValue
-
auditPath
protected java.util.List<AuditPath> auditPath
-
-
Method Detail
-
getRecordValue
public java.util.List<RecordValue> getRecordValue()
Gets the value of the recordValue 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 recordValue property.For example, to add a new item, do as follows:
getRecordValue().add(newItem);Objects of the following type(s) are allowed in the list
RecordValue
-
getGenerateValue
public java.util.List<GenerateValue> getGenerateValue()
Gets the value of the generateValue 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 generateValue property.For example, to add a new item, do as follows:
getGenerateValue().add(newItem);Objects of the following type(s) are allowed in the list
GenerateValue
-
getAuditPath
public java.util.List<AuditPath> getAuditPath()
Gets the value of the auditPath 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 auditPath property.For example, to add a new item, do as follows:
getAuditPath().add(newItem);Objects of the following type(s) are allowed in the list
AuditPath
-
-