Package com.adobe.forms.common.service
Class PrefillData
- java.lang.Object
-
- com.adobe.forms.common.service.PrefillData
-
public class PrefillData extends java.lang.ObjectThe PrefillData captures the set of parameters returned by the FormDataProviderRegistry. The following options are supported currently contentType : content type of the data. inputStream : input stream of the service.
-
-
Constructor Summary
Constructors Constructor Description PrefillData()PrefillData(java.io.InputStream inputStream, ContentType contentType)PrefillData(java.io.InputStream inputStream, ContentType contentType, java.util.Map<java.lang.String,java.lang.String> fileAttachmentMap, java.util.Map<java.lang.String,java.lang.String> customContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ContentTypegetContentType()Returns the content typejava.util.Map<java.lang.String,java.lang.String>getCustomContext()java.util.Map<java.lang.String,java.lang.String>getFileAttachmentMap()java.io.InputStreamgetInputStream()Returns the input stream
-
-
-
Constructor Detail
-
PrefillData
public PrefillData()
-
PrefillData
public PrefillData(java.io.InputStream inputStream, ContentType contentType)
-
PrefillData
public PrefillData(java.io.InputStream inputStream, ContentType contentType, java.util.Map<java.lang.String,java.lang.String> fileAttachmentMap, java.util.Map<java.lang.String,java.lang.String> customContext)
-
-
Method Detail
-
getContentType
public ContentType getContentType()
Returns the content type- Returns:
- content type
-
getInputStream
public java.io.InputStream getInputStream()
Returns the input stream- Returns:
- input stream
-
getFileAttachmentMap
public java.util.Map<java.lang.String,java.lang.String> getFileAttachmentMap()
-
getCustomContext
public java.util.Map<java.lang.String,java.lang.String> getCustomContext()
-
-