MaintenanceTaskManager.java 591 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  aQute.bnd.annotation.ProviderType
 */
package com.adobe.granite.maintenance;

import aQute.bnd.annotation.ProviderType;
import com.adobe.granite.maintenance.MaintenanceTaskInfo;
import java.util.Collection;

@ProviderType
public interface MaintenanceTaskManager {
    public Collection<MaintenanceTaskInfo> getMaintenanceTaskInfos();

    public MaintenanceTaskInfo getMaintenanceTaskInfo(String var1);

    public void startMaintenanceTask(String var1);

    public void stopMaintenanceTask(String var1);
}