blob: 585c74b1ff0a7c40e7871495c3960bba8c66ad28 [file] [log] [blame]
package com.intellij.remoteServer.runtime.deployment;
import com.intellij.openapi.project.Project;
import com.intellij.remoteServer.configuration.deployment.DeploymentConfiguration;
import com.intellij.remoteServer.configuration.deployment.DeploymentSource;
import org.jetbrains.annotations.NotNull;
/**
* @author nik
*/
public interface DeploymentTask<D extends DeploymentConfiguration> {
@NotNull
DeploymentSource getSource();
@NotNull
D getConfiguration();
@NotNull
Project getProject();
boolean isDebugMode();
}