Hi @danc13675873 , Try the below code snippet:
package aem.service;
import com.day.cq.wcm.api.WCMException;
import com.day.cq.wcm.msm.api.LiveAction;
import com.day.cq.wcm.msm.api.LiveActionFactory;
import org.apache.sling.api.resource.Resource;
import org.osgi.service.component.annotations.Component;
@Component(immediate = false, service = LiveActionFactory.class)
public class ExampleLiveActionFactory implements LiveActionFactory<LiveAction>{
@Override
public String createsAction() {
//add your code
return null;
}
@Override
public LiveAction createAction(Resource resource) throws WCMException {
//add your code
return null;
}
}