blob: 5182b833f01128890060a12927d5a76ca18f469f [file] [log] [blame]
package com.intellij.remoteServer.runtime.deployment;
import org.jetbrains.annotations.NotNull;
/**
* @author nik
*/
public enum DeploymentStatus {
DEPLOYED("Deployed"), NOT_DEPLOYED("Not deployed"), DEPLOYING("Deploying"), UNDEPLOYING("Undeploying");
private final String myPresentableText;
DeploymentStatus(@NotNull String presentableText) {
myPresentableText = presentableText;
}
@NotNull
public String getPresentableText() {
return myPresentableText;
}
}