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

com.day.cq.dam.core.process.ScheduledPublishBPProcess Maven / Gradle / Ivy

/*************************************************************************
 *
 * ADOBE CONFIDENTIAL
 * __________________
 *
 *  Copyright 2018 Adobe Systems Incorporated
 *  All Rights Reserved.
 *
 * NOTICE:  All information contained herein is, and remains
 * the property of Adobe Systems Incorporated and its suppliers,
 * if any.  The intellectual and technical concepts contained
 * herein are proprietary to Adobe Systems Incorporated and its
 * suppliers and are protected by trade secret or copyright law.
 * Dissemination of this information or reproduction of this material
 * is strictly forbidden unless prior written permission is obtained
 * from Adobe Systems Incorporated.
 *************************************************************************/
package com.day.cq.dam.core.process;

import org.apache.felix.scr.annotations.Component;
import org.apache.felix.scr.annotations.Properties;
import org.apache.felix.scr.annotations.Property;
import org.apache.felix.scr.annotations.Service;
import org.osgi.framework.Constants;

import com.adobe.granite.workflow.exec.WorkflowProcess;

/**
 * The ScheduledPublishBPProcess is called in a workflow process step.
 * This process will publish content to Brand Portal after a specified time.
 *
 */
@Component(metatype = false)
@Service(WorkflowProcess.class)
@Properties({
    @Property(name = Constants.SERVICE_DESCRIPTION, value = "Scheduled Publish of Assets to Brand Portal"),
    @Property(name = "process.label", value = "Scheduled Publish Brand Portal")
})

public class ScheduledPublishBPProcess extends AbstractScheduledReplicationBPProcess{
    
    protected REPTYPE getReplicationType() {
        return REPTYPE.PUBLISH;
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy