Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: a6e422b242038541666a7a82fc2221d0a9bd1779 (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
/*******************************************************************************
 * Copyright (c) 2006 Ken Gilmer. 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: Ken Gilmer - initial API and implementation
 ******************************************************************************/

package org.eclipse.ecf.example.collab.editor.message;

import java.util.List;

/**
 * This message is passed as a response to a <code>SharedEditorSessionListRequest</code> message.
 * The message is passed from peers that have open editor sessions to all others in the shared container.
 * 
 * @author kgilmer
 *
 */
public class SharedEditorSessionList extends AbstractMessage {
	private static final long serialVersionUID = 4337027955521207775L;
	private List sessionNames;
	
	public SharedEditorSessionList(List names) {
		sessionNames = names;
	}
	
	public List getNames() {
		return sessionNames;
	}
}

Back to the top