blob: 81287816d802c961384d3a30dee298a3851f73ec [file] [log] [blame]
package com.intellij.remoteServer.impl.configuration;
import com.intellij.util.xmlb.annotations.Attribute;
import com.intellij.util.xmlb.annotations.Tag;
import org.jdom.Element;
/**
* @author nik
*/
@Tag("remote-server")
public class RemoteServerState {
@Attribute("name")
public String myName;
@Attribute("type")
public String myTypeId;
@Tag("configuration")
public Element myConfiguration;
}