ValidationResult.java
663 Bytes
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.adobe.aemfd.docmanager.Document
*/
package com.adobe.fd.forms.api;
import com.adobe.aemfd.docmanager.Document;
public class ValidationResult {
Document document;
Document validationResult;
public Document getValidationResult() {
return this.validationResult;
}
public void setValidationResult(Document validationResult) {
this.validationResult = validationResult;
}
public Document getDocument() {
return this.document;
}
public void setDocument(Document document) {
this.document = document;
}
}