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

com.azure.cosmos.implementation.patch.PatchOperation Maven / Gradle / Ivy

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

package com.azure.cosmos.implementation.patch;

public abstract class PatchOperation {

    private final PatchOperationType operationType;

    /**
     * Initializes a new instance of the {@link PatchOperation} class.
     *
     * @param operationType Specifies the type of Patch operation
     */
    PatchOperation(PatchOperationType operationType) {
        this.operationType = operationType;
    }

    public PatchOperationType getOperationType() {
        return operationType;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy