All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.adobe.pdfservices.operation.internal.constants.OperationHeaderInfoEndpointMap Maven / Gradle / Ivy

Go to download

Adobe PDF Services SDK allows you to access RESTful APIs to create, convert, and manipulate PDFs within your applications. Older versions can be found under groupId: com.adobe.documentservices, artifactId: pdftools-sdk

There is a newer version: 4.2.0
Show newest version
/*
 * Copyright 2024 Adobe
 * All Rights Reserved.
 *
 * NOTICE: Adobe permits you to use, modify, and distribute this file in
 * accordance with the terms of the Adobe license agreement accompanying
 * it. If you have received this file from a source other than Adobe,
 * then your use, modification, or distribution of it requires the prior
 * written permission of Adobe.
 */

package com.adobe.pdfservices.operation.internal.constants;

public enum OperationHeaderInfoEndpointMap {

    CREATE_PDF("Create PDF Operation", "createpdf"),
    COMBINE_PDF("Combine Files Operation", "combinepdf"),
    EXPORT_PDF("Export PDF Operation", "exportpdf"),
    EXPORT_PDF_TO_IMAGES("Export PDF to Images Operation", "pdftoimages"),
    HTML_TO_PDF("HTML to PDF Operation", "htmltopdf"),
    OCR("OCR Operation", "ocr"),
    COMPRESS_PDF("Compress PDF Operation", "compresspdf"),
    LINEARIZE_PDF("Linearize PDF Operation", "linearizepdf"),
    PROTECT_PDF("Protect PDF Operation", "protectpdf"),
    INSERT_PAGES("Insert Pages Operation", "combinepdf"),
    REPLACE_PAGES("Replace Pages Operation", "combinepdf"),
    REORDER_PAGES("Reorder Pages Operation", "combinepdf"),
    ROTATE_PAGES("Rotate Pages Operation", "pagemanipulation"),
    DELETE_PAGES("Delete Pages Operation", "pagemanipulation"),
    REMOVE_PROTECTION("Remove Protection Operation", "removeprotection"),
    SPLIT_PDF("Split PDF Operation", "splitpdf"),
    MERGE_DOCUMENT("Document Merge Operation", "documentgeneration"),
    EXTRACT_PDF("Extract PDF Operation", "extractpdf"),
    PDF_PROPERTIES("PDF Properties Operation", "pdfproperties"),
    AUTO_TAG("PDF Autotag Operation", "autotag"),
    E_SEAL("Electronic Seal Operation", "electronicseal");


    private String headerInfo;
    private String endpoint;

    OperationHeaderInfoEndpointMap(String headerInfo, String endpoint) {
        this.headerInfo = headerInfo;
        this.endpoint = endpoint;
    }

    public String getHeaderInfo() {
        return headerInfo;
    }

    public String getEndpoint() {
        return endpoint;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy