ActivatePageProcess.java
968 Bytes
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.day.cq.replication.ReplicationActionType
* com.day.cq.workflow.exec.WorkflowProcess
* org.apache.felix.scr.annotations.Component
* org.apache.felix.scr.annotations.Property
* org.apache.felix.scr.annotations.Service
*/
package com.day.cq.wcm.workflow.process;
import com.day.cq.replication.ReplicationActionType;
import com.day.cq.wcm.workflow.process.ReplicatePageProcess;
import com.day.cq.workflow.exec.WorkflowProcess;
import org.apache.felix.scr.annotations.Component;
import org.apache.felix.scr.annotations.Property;
import org.apache.felix.scr.annotations.Service;
@Component
@Service(value={WorkflowProcess.class})
@Property(name="process.label", value={"Activate Page"})
public class ActivatePageProcess
extends ReplicatePageProcess {
@Override
public ReplicationActionType getReplicationType() {
return ReplicationActionType.ACTIVATE;
}
}