public IPerson get(String uri) throws SimalRepositoryException {
Model model = ((JenaSimalRepository)getRepository()).getModel();
if(uri.startsWith(RDFUtils.PERSON_NAMESPACE_URI)) {
if (getRepository().containsPerson(uri)) {
return new Person(model.getResource(uri));
} else {
return null;
}
} else {
return findBySeeAlso(uri);