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

com.day.cq.replication.ReplicationResultInfo Maven / Gradle / Ivy

/*************************************************************************
 * ADOBE CONFIDENTIAL
 * ___________________
 *
 * Copyright 2022 Adobe
 * All Rights Reserved.
 *
 * NOTICE: All information contained herein is, and remains
 * the property of Adobe and its suppliers, if any. The intellectual
 * and technical concepts contained herein are proprietary to Adobe
 * and its suppliers and are protected by all applicable intellectual
 * property laws, including trade secret and copyright laws.
 * Dissemination of this information or reproduction of this material
 * is strictly forbidden unless prior written permission is obtained
 * from Adobe.
 **************************************************************************/
package com.day.cq.replication;

import org.osgi.annotation.versioning.ProviderType;


/**
 * Incorporates replication details to accompany the replication result of a request.
 */
@ProviderType
public interface ReplicationResultInfo {
    ReplicationResultInfo NONE = new ReplicationResultInfo() {
        @Override public String getArtifactId() {
            return "";
        }
    };

    /**
     * Returns the unique id for the published artifact
     * 
     * @return The published artifact id or empty string
     */
    String getArtifactId();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy