Uses of Interface
com.adobe.pdfservices.operation.io.Asset
-
-
Uses of Asset in com.adobe.pdfservices.operation
Methods in com.adobe.pdfservices.operation that return Asset Modifier and Type Method Description Asset
PDFServices. refreshDownloadURI(Asset asset)
Returns a newAsset
with a new valid download URI.Asset
PDFServices. upload(InputStream inputStream, String mimeType)
Upload content from input stream and returns anAsset
to be used in PDF Services SDK.Methods in com.adobe.pdfservices.operation that return types with arguments of type Asset Modifier and Type Method Description List<Asset>
PDFServices. uploadAssets(List<StreamAsset> uploadAssetList)
Upload content from list ofStreamAsset
and returns a list ofAsset
to be used in PDF Services SDK.Methods in com.adobe.pdfservices.operation with parameters of type Asset Modifier and Type Method Description void
PDFServices. deleteAsset(Asset asset)
Deletes asset from PDF Services storage.StreamAsset
PDFServices. getContent(Asset asset)
Returns the content of the asset.Asset
PDFServices. refreshDownloadURI(Asset asset)
Returns a newAsset
with a new valid download URI. -
Uses of Asset in com.adobe.pdfservices.operation.io
Classes in com.adobe.pdfservices.operation.io that implement Asset Modifier and Type Class Description class
CloudAsset
This class represents an asset stored in Adobe internal storage.class
ExternalAsset
This class represents an asset stored in an external storage. -
Uses of Asset in com.adobe.pdfservices.operation.pdfjobs.jobs
Methods in com.adobe.pdfservices.operation.pdfjobs.jobs with parameters of type Asset Modifier and Type Method Description AutotagPDFJob
AutotagPDFJob. setOutput(Asset asset)
Sets the output asset for the job.CombinePDFJob
CombinePDFJob. setOutput(Asset asset)
Sets the output asset for the job.CompressPDFJob
CompressPDFJob. setOutput(Asset asset)
Sets the output asset for the job.CreatePDFJob
CreatePDFJob. setOutput(Asset asset)
Sets the output asset for the job.DeletePagesJob
DeletePagesJob. setOutput(Asset asset)
Sets the output asset for the job.DocumentMergeJob
DocumentMergeJob. setOutput(Asset asset)
Sets the output asset for the job.ExportPDFJob
ExportPDFJob. setOutput(Asset asset)
Sets the output asset for the job.ExportPDFToImagesJob
ExportPDFToImagesJob. setOutput(Asset asset)
Sets the output asset for the job.ExtractPDFJob
ExtractPDFJob. setOutput(Asset asset)
Sets the output asset for the job.HTMLToPDFJob
HTMLToPDFJob. setOutput(Asset asset)
Sets the output asset for the job.InsertPagesPDFJob
InsertPagesPDFJob. setOutput(Asset asset)
Sets the output asset for the job.LinearizePDFJob
LinearizePDFJob. setOutput(Asset asset)
Sets the output asset for the job.OCRJob
OCRJob. setOutput(Asset asset)
Sets the output asset for the job.PDFElectronicSealJob
PDFElectronicSealJob. setOutput(Asset asset)
Sets the output asset for the job.ProtectPDFJob
ProtectPDFJob. setOutput(Asset asset)
Sets the output asset for the job.RemoveProtectionJob
RemoveProtectionJob. setOutput(Asset asset)
Sets the output asset for the job.ReorderPagesPDFJob
ReorderPagesPDFJob. setOutput(Asset asset)
Sets the output asset for the job.ReplacePagesPDFJob
ReplacePagesPDFJob. setOutput(Asset asset)
Sets the output asset for the job.RotatePagesJob
RotatePagesJob. setOutput(Asset asset)
Sets the output asset for the job.SplitPDFJob
SplitPDFJob. setOutput(Asset asset)
Sets the output asset for the job.void
PDFElectronicSealJob. setSealImageAsset(Asset sealImageAsset)
Sets the seal image asset for the job.Constructors in com.adobe.pdfservices.operation.pdfjobs.jobs with parameters of type Asset Constructor Description AutotagPDFJob(Asset asset)
Constructs a newAutotagPDFJob
instance with input asset.CompressPDFJob(Asset asset)
Constructs a newCompressPDFJob
instance.CreatePDFJob(Asset asset)
Constructs a newCreatePDFJob
instance.DeletePagesJob(Asset asset, DeletePagesParams deletePagesParams)
Constructs a newDeletePagesJob
instance.DocumentMergeJob(Asset asset, DocumentMergeParams documentMergeParams)
Constructs a newDocumentMergeJob
instance.ExportPDFJob(Asset asset, ExportPDFParams exportPDFParams)
Constructs a newExportPDFJob
instance.ExportPDFToImagesJob(Asset asset, ExportPDFToImagesParams exportPDFToImagesParams)
Constructs a newExportPDFToImagesJob
instance.ExtractPDFJob(Asset asset)
Constructs a newExtractPDFJob
instance.HTMLToPDFJob(Asset asset)
Constructs a newHTMLToPDFJob
instance.LinearizePDFJob(Asset asset)
Constructs a newLinearizePDFJob
instance.OCRJob(Asset asset)
Constructs a newOCRJob
instance.PDFElectronicSealJob(Asset inputDocumentAsset, PDFElectronicSealParams pdfElectronicSealParams)
Constructs a newPDFElectronicSealJob
instance.PDFPropertiesJob(Asset asset)
Constructs a newPDFPropertiesJob
instance.ProtectPDFJob(Asset asset, ProtectPDFParams protectPDFParams)
Constructs a newProtectPDFJob
instance.RemoveProtectionJob(Asset asset, RemoveProtectionParams removeProtectionParams)
Constructs a newRemoveProtectionJob
instance.RotatePagesJob(Asset asset, RotatePagesParams rotatePagesParams)
Constructs a newRotatePagesJob
instance.SplitPDFJob(Asset asset, SplitPDFParams splitPDFParams)
Constructs a newSplitPDFJob
instance. -
Uses of Asset in com.adobe.pdfservices.operation.pdfjobs.params.combinepdf
Methods in com.adobe.pdfservices.operation.pdfjobs.params.combinepdf with parameters of type Asset Modifier and Type Method Description CombinePDFParams.Builder
CombinePDFParams.Builder. addAsset(Asset asset)
Adds anAsset
to combine.CombinePDFParams.Builder
CombinePDFParams.Builder. addAsset(Asset asset, PageRanges pageRanges)
Adds anAsset
withPageRanges
to combine. -
Uses of Asset in com.adobe.pdfservices.operation.pdfjobs.params.insertpages
Methods in com.adobe.pdfservices.operation.pdfjobs.params.insertpages that return Asset Modifier and Type Method Description Asset
InsertPagesParams. getBaseAsset()
Returns the base PDFAsset
to which pages will be inserted.Methods in com.adobe.pdfservices.operation.pdfjobs.params.insertpages with parameters of type Asset Modifier and Type Method Description InsertPagesParams.Builder
InsertPagesParams.Builder. addPagesToInsertAt(Asset inputAsset, PageRanges pageRanges, Integer basePage)
Adds the specified pages of the input PDF file to be inserted at the specified page of the base PDF fileInsertPagesParams.Builder
InsertPagesParams.Builder. addPagesToInsertAt(Asset inputAsset, Integer basePage)
Adds all the pages of the input PDF file to be inserted at the specified page of the base PDF file.static InsertPagesParams.Builder
InsertPagesParams. insertPagesParamsBuilder(Asset asset)
Creates a newInsertPagesParams.Builder
.Constructors in com.adobe.pdfservices.operation.pdfjobs.params.insertpages with parameters of type Asset Constructor Description Builder(Asset asset)
Constructs aBuilder
instance. -
Uses of Asset in com.adobe.pdfservices.operation.pdfjobs.params.reorderpages
Methods in com.adobe.pdfservices.operation.pdfjobs.params.reorderpages that return Asset Modifier and Type Method Description Asset
ReorderPagesParams. getAsset()
Returns theAsset
to be reordered.Methods in com.adobe.pdfservices.operation.pdfjobs.params.reorderpages with parameters of type Asset Modifier and Type Method Description static ReorderPagesParams.Builder
ReorderPagesParams. reorderPagesParamsBuilder(Asset asset, PageRanges pageRanges)
Creates a newReorderPagesParams.Builder
.Constructors in com.adobe.pdfservices.operation.pdfjobs.params.reorderpages with parameters of type Asset Constructor Description Builder(Asset asset, PageRanges pageRanges)
Constructs aBuilder
instance. -
Uses of Asset in com.adobe.pdfservices.operation.pdfjobs.params.replacepages
Methods in com.adobe.pdfservices.operation.pdfjobs.params.replacepages that return Asset Modifier and Type Method Description Asset
ReplacePagesParams. getBaseAsset()
Returns the base PDFAsset
to which pages will be replaced.Methods in com.adobe.pdfservices.operation.pdfjobs.params.replacepages with parameters of type Asset Modifier and Type Method Description ReplacePagesParams.Builder
ReplacePagesParams.Builder. addPagesForReplace(Asset inputAsset, PageRanges pageRanges, Integer basePage)
Adds the specified pages of the input PDF file to be replaced at the specified page of the base PDF fileReplacePagesParams.Builder
ReplacePagesParams.Builder. addPagesForReplace(Asset inputAsset, Integer basePage)
Adds all the pages of the input PDF file to be replaced at the specified page of the base PDF file.static ReplacePagesParams.Builder
ReplacePagesParams. replacePagesParamsBuilder(Asset asset)
Creates a newReplacePagesParams.Builder
.Constructors in com.adobe.pdfservices.operation.pdfjobs.params.replacepages with parameters of type Asset Constructor Description Builder(Asset asset)
Constructs aReplacePagesParams.Builder
instance. -
Uses of Asset in com.adobe.pdfservices.operation.pdfjobs.result
Methods in com.adobe.pdfservices.operation.pdfjobs.result that return Asset Modifier and Type Method Description Asset
CombinePDFResult. getAsset()
Returns the resultAsset
Asset
CompressPDFResult. getAsset()
Returns the resultAsset
Asset
CreatePDFResult. getAsset()
Returns the resultAsset
Asset
DeletePagesResult. getAsset()
Returns the resultAsset
Asset
DocumentMergeResult. getAsset()
Returns the resultAsset
Asset
ExportPDFResult. getAsset()
Returns the resultAsset
Asset
HTMLToPDFResult. getAsset()
Returns the resultAsset
Asset
InsertPagesResult. getAsset()
Returns the resultAsset
Asset
LinearizePDFResult. getAsset()
Returns the resultAsset
Asset
OCRResult. getAsset()
Returns the resultAsset
Asset
PDFElectronicSealResult. getAsset()
Returns the resultAsset
Asset
ProtectPDFResult. getAsset()
Returns the resultAsset
Asset
RemoveProtectionResult. getAsset()
Returns the resultAsset
Asset
ReorderPagesResult. getAsset()
Returns the resultAsset
Asset
ReplacePagesResult. getAsset()
Returns the resultAsset
Asset
RotatePagesResult. getAsset()
Returns the resultAsset
Asset
SplitPDFResult. getAsset()
Returns the resultAsset
enclosing zipped output result, if an external asset was used as input PDFAsset
ExtractPDFResult. getContent()
Returns the content asset, if an internal asset was used as input PDFAsset
AutotagPDFResult. getReport()
Returns report asset, if an internal asset was used as input PDFAsset
AutotagPDFResult. getResource()
Returns resource asset enclosing zipped output result, if an external asset was used as input PDFAsset
ExtractPDFResult. getResource()
Returns the resource assetAsset
AutotagPDFResult. getTaggedPDF()
Returns tagged PDF asset, if an internal asset was used as input PDFMethods in com.adobe.pdfservices.operation.pdfjobs.result that return types with arguments of type Asset Modifier and Type Method Description List<Asset>
ExportPDFToImagesResult. getAssets()
Returns the list of result assetsList<Asset>
SplitPDFResult. getAssets()
Returns the list of result assets, if an internal asset was used as input PDFConstructors in com.adobe.pdfservices.operation.pdfjobs.result with parameters of type Asset Constructor Description AutotagPDFResult(Asset taggedPDF)
Constructs a newAutotagPDFResult
instance with the tagged PDF asset.AutotagPDFResult(Asset taggedPDF, Asset report)
Constructs a newAutotagPDFResult
instance with the tagged PDF asset and report asset.AutotagPDFResult(Asset taggedPDF, Asset report, Asset resource)
Constructs a newAutotagPDFResult
instance with the tagged PDF asset, report asset and resource asset.CombinePDFResult(Asset asset)
Constructs a newCombinePDFResult
instanceCompressPDFResult(Asset asset)
Constructs a newCompressPDFResult
instanceCreatePDFResult(Asset asset)
Constructs a newCreatePDFResult
instanceDeletePagesResult(Asset asset)
Constructs a newDeletePagesResult
instanceDocumentMergeResult(Asset asset)
Constructs a newDocumentMergeResult
instanceExportPDFResult(Asset asset)
Constructs a newExportPDFResult
instanceExtractPDFResult(Asset content, Asset resource, org.json.JSONObject contentJSON)
Constructs a newExtractPDFResult
instance with result content asset, resource asset and resource JSON objectHTMLToPDFResult(Asset asset)
Constructs a newHTMLToPDFResult
instanceInsertPagesResult(Asset asset)
Constructs a newInsertPagesResult
instanceLinearizePDFResult(Asset asset)
Constructs a newLinearizePDFResult
instanceOCRResult(Asset asset)
Constructs a newOCRResult
instancePDFElectronicSealResult(Asset asset)
Constructs a newPDFElectronicSealResult
instanceProtectPDFResult(Asset asset)
Constructs a newProtectPDFResult
instanceRemoveProtectionResult(Asset asset)
Constructs a newRemoveProtectionResult
instanceReorderPagesResult(Asset asset)
Constructs a newReorderPagesResult
instanceReplacePagesResult(Asset asset)
Constructs a newReplacePagesResult
instanceRotatePagesResult(Asset asset)
Constructs a newRotatePagesResult
instanceSplitPDFResult(List<Asset> assets, Asset asset)
Constructs a newSplitPDFResult
instanceConstructor parameters in com.adobe.pdfservices.operation.pdfjobs.result with type arguments of type Asset Constructor Description ExportPDFToImagesResult(List<Asset> assets)
Constructs a newExportPDFToImagesResult
instanceSplitPDFResult(List<Asset> assets, Asset asset)
Constructs a newSplitPDFResult
instance
-