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

com.microsoft.azure.documentdb.internal.PathInfo Maven / Gradle / Ivy

package com.microsoft.azure.documentdb.internal;

/**
 * Represents a resource path's information in the Azure Cosmos DB database service.
 */
public final class PathInfo {
    public final boolean isFeed;
    public final String resourcePath;
    public final String resourceIdOrFullName;
    public final boolean isNameBased;

    public PathInfo(boolean isFeed, String resourcePath, String resourceIdOrFullName, boolean isNameBased) {
        this.isFeed = isFeed;
        this.resourcePath = resourcePath;
        this.resourceIdOrFullName = resourceIdOrFullName;
        this.isNameBased = isNameBased;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy