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);
}
}