Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 41d87f4ac69b27a220f99b259927df138bbef537 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/****************************************************************************
 * Copyright (c) 2004, 2007 Composent, Inc. and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Composent, Inc. - initial API and implementation
 *****************************************************************************/
package org.eclipse.ecf.core.events;

import org.eclipse.ecf.core.identity.ID;

/**
 * Container disconnected event.
 */
public class ContainerDisconnectedEvent implements IContainerDisconnectedEvent {
	private static final long serialVersionUID = 3256437002059527733L;

	private final ID departedContainerID;

	private final ID localContainerID;

	/**
	 * Creates a new ContainerDisconnectedEvent to indicate that the container
	 * has now completely disconnected from its target host.
	 * 
	 * @param localContainerID
	 *            the ID of the local container
	 * @param targetID
	 *            the ID of the target
	 */
	public ContainerDisconnectedEvent(ID localContainerID, ID targetID) {
		this.localContainerID = localContainerID;
		this.departedContainerID = targetID;
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see org.eclipse.ecf.core.events.IContainerDisconnectedEvent#getTargetID()
	 */
	public ID getTargetID() {
		return departedContainerID;
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see org.eclipse.ecf.core.events.IContainerEvent#getLocalContainerID()
	 */
	public ID getLocalContainerID() {
		return localContainerID;
	}

	/*
	 * (non-Javadoc)
	 * 
	 * @see java.lang.Object#toString()
	 */
	public String toString() {
		StringBuffer buf = new StringBuffer("ContainerDisconnectedEvent["); //$NON-NLS-1$
		buf.append(getLocalContainerID()).append(";").append("]"); //$NON-NLS-1$ //$NON-NLS-2$
		buf.append(getTargetID()).append(";"); //$NON-NLS-1$
		return buf.toString();
	}
}

Back to the top