Package org.eclipse.ecf.internal.provider.vbulletin.identity

Examples of org.eclipse.ecf.internal.provider.vbulletin.identity.GuestID


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);
    }
  }
View Full Code Here


  }

  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);
    }
  }
View Full Code Here

TOP

Related Classes of org.eclipse.ecf.internal.provider.vbulletin.identity.GuestID

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.