149150151152153154155156
archivaAdministration.removeFileTypePattern( fileTypeId, pattern, getAuditInformation() ); return Boolean.TRUE; } catch ( RepositoryAdminException e ) { throw new ArchivaRestServiceException( e.getMessage(), e ); } }
163164165166167168169170
{ return archivaAdministration.getFileType( fileTypeId ); } catch ( RepositoryAdminException e ) { throw new ArchivaRestServiceException( e.getMessage(), e ); } }
177178179180181182183184
{ archivaAdministration.addFileType( fileType, getAuditInformation() ); } catch ( RepositoryAdminException e ) { throw new ArchivaRestServiceException( e.getMessage(), e ); } }
192193194195196197198199
archivaAdministration.removeFileType( fileTypeId, getAuditInformation() ); return Boolean.TRUE; } catch ( RepositoryAdminException e ) { throw new ArchivaRestServiceException( e.getMessage(), e ); } }
207208209210211212213214
archivaAdministration.addKnownContentConsumer( knownContentConsumer, getAuditInformation() ); return Boolean.TRUE; } catch ( RepositoryAdminException e ) { throw new ArchivaRestServiceException( e.getMessage(), e ); } }
221222223224225226227228
{ archivaAdministration.setKnownContentConsumers( knownContentConsumers, getAuditInformation() ); } catch ( RepositoryAdminException e ) { throw new ArchivaRestServiceException( e.getMessage(), e ); } }
236237238239240241242243
archivaAdministration.removeKnownContentConsumer( knownContentConsumer, getAuditInformation() ); return Boolean.TRUE; } catch ( RepositoryAdminException e ) { throw new ArchivaRestServiceException( e.getMessage(), e ); } }
251252253254255256257258
archivaAdministration.addInvalidContentConsumer( invalidContentConsumer, getAuditInformation() ); return Boolean.TRUE; } catch ( RepositoryAdminException e ) { throw new ArchivaRestServiceException( e.getMessage(), e ); } }
265266267268269270271272
{ archivaAdministration.setInvalidContentConsumers( invalidContentConsumers, getAuditInformation() ); } catch ( RepositoryAdminException e ) { throw new ArchivaRestServiceException( e.getMessage(), e ); } }
280281282283284285286287
archivaAdministration.removeInvalidContentConsumer( invalidContentConsumer, getAuditInformation() ); return Boolean.TRUE; } catch ( RepositoryAdminException e ) { throw new ArchivaRestServiceException( e.getMessage(), e ); } }