blob: f76d7c1aae65c3e24f5ffc78dc5ed14664b76982 [file] [log] [blame]
package com.intellij.remoteServer.util;
/**
* @author michael.golubev
*/
public interface DeploymentNameConfiguration {
boolean isDefaultDeploymentName();
String getDeploymentName();
void setDefaultDeploymentName(boolean defaultContextRoot);
void setDeploymentName(String contextRoot);
}