161162163164165166167168
{ getOrAddProjectNode( repositoryId, namespace, projectId ); } catch ( RepositoryException e ) { throw new MetadataRepositoryException( e.getMessage(), e ); } }
209210211212213214215216
} } } catch ( RepositoryException e ) { throw new MetadataRepositoryException( e.getMessage(), e ); } }
339340341342343344345346
353354355356357358359360
Node node = getOrAddNamespaceNode( repositoryId, namespace ); node.setProperty( "namespace", namespace ); } catch ( RepositoryException e ) { throw new MetadataRepositoryException( e.getMessage(), e ); } }
378379380381382383384385386
{ // ignored - the facet doesn't exist, so return the empty list } catch ( RepositoryException e ) { throw new MetadataRepositoryException( e.getMessage(), e ); } return facets; }
432433434435436437438439440
{ // ignored - the facet doesn't exist, so return null } catch ( RepositoryException e ) { throw new MetadataRepositoryException( e.getMessage(), e ); } return metadataFacet; }
457458459460461462463464
node.setProperty( entry.getKey(), entry.getValue() ); } } catch ( RepositoryException e ) { throw new MetadataRepositoryException( e.getMessage(), e ); } }
475476477478479480481482
root.getNode( path ).remove(); } } catch ( RepositoryException e ) { throw new MetadataRepositoryException( e.getMessage(), e ); } }
501502503504505506507508
while ( !node.hasNodes() ); } } catch ( RepositoryException e ) { throw new MetadataRepositoryException( e.getMessage(), e ); } }
543544545546547548549550551
artifacts.add( getArtifactFromNode( repoId, n ) ); } } catch ( RepositoryException e ) { throw new MetadataRepositoryException( e.getMessage(), e ); } return artifacts; }