165166167168169170171172
{ getOrAddProjectNode( repositoryId, namespace, projectId ); } catch ( RepositoryException e ) { throw new MetadataRepositoryException( e.getMessage(), e ); } }
222223224225226227228229
} } } catch ( RepositoryException e ) { throw new MetadataRepositoryException( e.getMessage(), e ); } }
353354355356357358359360
368369370371372373374375
Node node = getOrAddNamespaceNode( repositoryId, namespace ); node.setProperty( "namespace", namespace ); } catch ( RepositoryException e ) { throw new MetadataRepositoryException( e.getMessage(), e ); } }
397398399400401402403404405
} } catch ( RepositoryException e ) { throw new MetadataRepositoryException( e.getMessage(), e ); } }
419420421422423424425426
// ignored - the facet doesn't exist, so return false return false; } catch ( RepositoryException e ) { throw new MetadataRepositoryException( e.getMessage(), e ); } }
445446447448449450451452453
{ // ignored - the facet doesn't exist, so return the empty list } catch ( RepositoryException e ) { throw new MetadataRepositoryException( e.getMessage(), e ); } return facets; }
505506507508509510511512513
{ // ignored - the facet doesn't exist, so return null } catch ( RepositoryException e ) { throw new MetadataRepositoryException( e.getMessage(), e ); } return metadataFacet; }
531532533534535536537538
node.setProperty( entry.getKey(), entry.getValue() ); } } catch ( RepositoryException e ) { throw new MetadataRepositoryException( e.getMessage(), e ); } }
554555556557558559560561