blob: 0d0edb44c6517067ee491746d9a7c4018d120640 [file] [log] [blame]
/****************************************************************************
* Copyright (c) 2009 Remy Chi Jian Suen and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Remy Chi Jian Suen - initial API and implementation
*
* SPDX-License-Identifier: EPL-2.0
*****************************************************************************/
package org.eclipse.ecf.tests.provider.datashare.nio;
import org.eclipse.ecf.core.BaseContainer;
import org.eclipse.ecf.core.ContainerConnectException;
import org.eclipse.ecf.core.events.ContainerConnectedEvent;
import org.eclipse.ecf.core.events.ContainerDisconnectedEvent;
import org.eclipse.ecf.core.identity.ID;
import org.eclipse.ecf.core.identity.IDFactory;
import org.eclipse.ecf.core.security.IConnectContext;
public class ContainerImpl extends BaseContainer {
private static int counter = 0;
private ID connectedId;
public ContainerImpl() {
super(IDFactory.getDefault().createStringID("A" + counter)); //$NON-NLS-1$
connectedId = IDFactory.getDefault().createStringID("B" + counter); //$NON-NLS-1$
counter++;
}
public void connect(ID targetId, IConnectContext connectContext)
throws ContainerConnectException {
fireContainerEvent(new ContainerConnectedEvent(getID(),
getConnectedID()));
}
public void disconnect() {
fireContainerEvent(new ContainerDisconnectedEvent(getID(),
getConnectedID()));
}
public ID getConnectedID() {
return connectedId;
}
}