// // Copyright (c)1998-2011 Pearson Education, Inc. or its affiliate(s). // All rights reserved. // package openadk.library.impl; import openadk.library.ADKException; /** * Title: * Description: * Copyright: Copyright (c) 2002 * Company: * @author * @version 1.0 */ public class AgentServer implements IAgentServer { public AgentServer() { } /** * Connect this agent to the Agent Server */ public void connect() throws ADKException { } /** * Disconnect this agent from the Agent Server */ public void disconnect() throws ADKException { } }