PrefillData.java
622 Bytes
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.forms.common.service;
import com.adobe.forms.common.service.ContentType;
import java.io.InputStream;
public class PrefillData {
private InputStream inputStream;
private ContentType contentType;
public PrefillData() {
}
public PrefillData(InputStream inputStream, ContentType contentType) {
this.inputStream = inputStream;
this.contentType = contentType;
}
public ContentType getContentType() {
return this.contentType;
}
public InputStream getInputStream() {
return this.inputStream;
}
}