Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 7b820682c3e5dabb1807712433da092d3feddc6f (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
69
70
71
72
73
74
75
76
77
/*******************************************************************************
 * Copyright (c) 2005, 2006 Erkki Lindpere 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:
 *     Erkki Lindpere - initial API and implementation
 *******************************************************************************/
package org.eclipse.ecf.internal.provider.vbulletin;

import java.util.Collection;
import java.util.Collections;
import java.util.Map;

import org.eclipse.ecf.bulletinboard.IMember;
import org.eclipse.ecf.bulletinboard.IMemberGroup;
import org.eclipse.ecf.core.identity.ID;
import org.eclipse.ecf.internal.bulletinboard.commons.AbstractBulletinBoard;
import org.eclipse.ecf.internal.provider.vbulletin.identity.MemberID;

public class Member extends VBObject implements IMember {
	private static final long serialVersionUID = -1931142128734519538L;

	private ID id;

	public Member(ID id, String name) {
		super(name, READ_ONLY);
		this.id = id;
	}

	public Member(String name) {
		super(name, READ_ONLY);
		this.id = null;
	}

	public ID getID() {
		return id;
	}

	public boolean isMemberOf(IMemberGroup group) {
		// TODO maybe a better way?
		return group.getMembers().contains(this);
	}

	public Collection<IMemberGroup> getGroups() {
		// TODO Auto-generated method stub
		return null;
	}

	@Override
	public boolean equals(Object obj) {
		if (obj instanceof Member) {
			Member grp = (Member) obj;
			return id.equals(grp.id);
		}
		return false;
	}

	@Override
	public int hashCode() {
		return id.hashCode();
	}

	public Map getProperties() {
		return Collections.emptyMap();
	}

	@Override
	public void setBulletinBoard(AbstractBulletinBoard bb) {
		super.setBulletinBoard(bb);
		if (this.id == null) {
			this.id = bb.getID();
		}
	}
}

Back to the top