Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'incubation/bundles/org.eclipse.ecf.provider.vbulletin/src/org/eclipse/ecf/internal/provider/vbulletin/internal/GuestFactory.java')
-rw-r--r--incubation/bundles/org.eclipse.ecf.provider.vbulletin/src/org/eclipse/ecf/internal/provider/vbulletin/internal/GuestFactory.java50
1 files changed, 50 insertions, 0 deletions
diff --git a/incubation/bundles/org.eclipse.ecf.provider.vbulletin/src/org/eclipse/ecf/internal/provider/vbulletin/internal/GuestFactory.java b/incubation/bundles/org.eclipse.ecf.provider.vbulletin/src/org/eclipse/ecf/internal/provider/vbulletin/internal/GuestFactory.java
new file mode 100644
index 000000000..3d3eb95c1
--- /dev/null
+++ b/incubation/bundles/org.eclipse.ecf.provider.vbulletin/src/org/eclipse/ecf/internal/provider/vbulletin/internal/GuestFactory.java
@@ -0,0 +1,50 @@
+/*******************************************************************************
+ * 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.internal;
+
+import java.net.URI;
+import java.net.URISyntaxException;
+import java.net.URL;
+import java.util.Map;
+
+import org.eclipse.ecf.bulletinboard.IBBObject;
+import org.eclipse.ecf.core.identity.ID;
+import org.eclipse.ecf.core.identity.IDCreateException;
+import org.eclipse.ecf.core.identity.Namespace;
+import org.eclipse.ecf.internal.bulletinboard.commons.IBBObjectFactory;
+import org.eclipse.ecf.internal.provider.vbulletin.Member;
+import org.eclipse.ecf.internal.provider.vbulletin.identity.GuestID;
+import org.eclipse.ecf.internal.provider.vbulletin.identity.VBNamespace;
+
+public class GuestFactory implements IBBObjectFactory {
+ public ID createBBObjectId(Namespace namespace, String stringValue)
+ throws IDCreateException {
+ try {
+ return new GuestID((VBNamespace) namespace, new URI(stringValue));
+ } catch (URISyntaxException e) {
+ throw new IDCreateException(e);
+ }
+ }
+
+ public ID createBBObjectId(Namespace namespace, URL baseURL,
+ String longValue) throws IDCreateException {
+ try {
+ return new GuestID((VBNamespace) namespace, baseURL, longValue);
+ } catch (URISyntaxException e) {
+ throw new IDCreateException(e);
+ }
+ }
+
+ public IBBObject createBBObject(ID id, String name,
+ Map<String, Object> parameters) {
+ return new Member((GuestID) id, name);
+ }
+} \ No newline at end of file

Back to the top