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
} } } catch ( RepositoryException e ) { throw new MetadataRepositoryException( e.getMessage(), e ); } }
573574575576577578579580
root.getNode( path ).remove(); } } catch ( RepositoryException e ) { throw new MetadataRepositoryException( e.getMessage(), e ); } }
600601602603604605606607
while ( !node.hasNodes() ); } } catch ( RepositoryException e ) { throw new MetadataRepositoryException( e.getMessage(), e ); } }
643644645646647648649650651
artifacts.add( getArtifactFromNode( repoId, n ) ); } } catch ( RepositoryException e ) { throw new MetadataRepositoryException( e.getMessage(), e ); } return artifacts; }
676677678679680681682683684
repositories = Collections.emptyList(); } } catch ( RepositoryException e ) { throw new MetadataRepositoryException( e.getMessage(), e ); } return repositories; }
704705706707708709710711712
artifacts.add( getArtifactFromNode( repositoryId, n ) ); } } catch ( RepositoryException e ) { throw new MetadataRepositoryException( e.getMessage(), e ); } return artifacts; }
725726727728729730731732