package com.tridium.sys; import java.net.URL; public interface RemoteShellContainer { URL getCodeBase(); URL getDocumentBase(); String getParameter(String str); boolean isActive(); void showDocument(URL url); void showDocument(URL url, String str); void showStatus(String str); }