149150151152153154155156
archivaAdministration.removeFileType( fileTypeId, getAuditInformation() ); return Boolean.TRUE; } catch ( RepositoryAdminException e ) { throw new ArchivaRestServiceException( e.getMessage() ); } }
163164165166167168169170
archivaAdministration.addKnownContentConsumer( knownContentConsumer, getAuditInformation() ); return Boolean.TRUE; } catch ( RepositoryAdminException e ) { throw new ArchivaRestServiceException( e.getMessage() ); } }
176177178179180181182183
{ archivaAdministration.setKnownContentConsumers( knownContentConsumers, getAuditInformation() ); } catch ( RepositoryAdminException e ) { throw new ArchivaRestServiceException( e.getMessage() ); } }
190191192193194195196197
archivaAdministration.removeKnownContentConsumer( knownContentConsumer, getAuditInformation() ); return Boolean.TRUE; } catch ( RepositoryAdminException e ) { throw new ArchivaRestServiceException( e.getMessage() ); } }
204205206207208209210211
archivaAdministration.addInvalidContentConsumer( invalidContentConsumer, getAuditInformation() ); return Boolean.TRUE; } catch ( RepositoryAdminException e ) { throw new ArchivaRestServiceException( e.getMessage() ); } }
217218219220221222223224
{ archivaAdministration.setInvalidContentConsumers( invalidContentConsumers, getAuditInformation() ); } catch ( RepositoryAdminException e ) { throw new ArchivaRestServiceException( e.getMessage() ); } }
231232233234235236237238
archivaAdministration.removeInvalidContentConsumer( invalidContentConsumer, getAuditInformation() ); return Boolean.TRUE; } catch ( RepositoryAdminException e ) { throw new ArchivaRestServiceException( e.getMessage() ); } }
249250251252253254255256
} return modelfileTypes; } catch ( RepositoryAdminException e ) { throw new ArchivaRestServiceException( e.getMessage() ); } }
262263264265266267268269
{ return new ArrayList<String>( archivaAdministration.getKnownContentConsumers() ); } catch ( RepositoryAdminException e ) { throw new ArchivaRestServiceException( e.getMessage() ); } }
275276277278279280281282
{ return new ArrayList<String>( archivaAdministration.getInvalidContentConsumers() ); } catch ( RepositoryAdminException e ) { throw new ArchivaRestServiceException( e.getMessage() ); } }