7879808182838485
} getNetworkProxyAdmin().addNetworkProxy( networkProxy, getAuditInformation() ); } catch ( RepositoryAdminException e ) { throw new ArchivaRestServiceException( e.getMessage() ); } }
9596979899100101102
{ getNetworkProxyAdmin().updateNetworkProxy( networkProxy, getAuditInformation() ); } catch ( RepositoryAdminException e ) { throw new ArchivaRestServiceException( e.getMessage() ); } }
109110111112113114115116
getNetworkProxyAdmin().deleteNetworkProxy( networkProxyId, getAuditInformation() ); return Boolean.TRUE; } catch ( RepositoryAdminException e ) { throw new ArchivaRestServiceException( e.getMessage() ); } }
5354555657585960
{ return archivaAdministration.getLegacyArtifactPaths(); } catch ( RepositoryAdminException e ) { throw new ArchivaRestServiceException( e.getMessage() ); } }
6667686970717273
{ archivaAdministration.addLegacyArtifactPath( legacyArtifactPath, getAuditInformation() ); } catch ( RepositoryAdminException e ) { throw new ArchivaRestServiceException( e.getMessage() ); } }
8081828384858687
archivaAdministration.deleteLegacyArtifactPath( path, getAuditInformation() ); return Boolean.TRUE; } catch ( RepositoryAdminException e ) { throw new ArchivaRestServiceException( e.getMessage() ); } }
archivaAdministration.addFileTypePattern( fileTypeId, pattern, getAuditInformation() ); return Boolean.TRUE; } catch ( RepositoryAdminException e ) { throw new ArchivaRestServiceException( e.getMessage() ); } }
archivaAdministration.removeFileTypePattern( fileTypeId, pattern, getAuditInformation() ); return Boolean.TRUE; } catch ( RepositoryAdminException e ) { throw new ArchivaRestServiceException( e.getMessage() ); } }
122123124125126127128129
{ return archivaAdministration.getFileType( fileTypeId ); } catch ( RepositoryAdminException e ) { throw new ArchivaRestServiceException( e.getMessage() ); } }
135136137138139140141142
{ archivaAdministration.addFileType( fileType, getAuditInformation() ); } catch ( RepositoryAdminException e ) { throw new ArchivaRestServiceException( e.getMessage() ); } }