public class ForumFactory implements IBBObjectFactory {
public ID createBBObjectId(Namespace namespace, String stringValue)
throws IDCreateException {
try {
return new ForumID((PHPBBNamespace) namespace, new URI(stringValue));
} catch (URISyntaxException e) {
throw new IDCreateException(e);
}
}