diff options
author | Martin Stockhammer <martin_s@apache.org> | 2020-12-28 21:05:44 +0100 |
---|---|---|
committer | Martin Stockhammer <martin_s@apache.org> | 2020-12-28 21:05:44 +0100 |
commit | c7344aa1c443678f69ee280774ab2505391a562a (patch) | |
tree | d00958bbadcce948d9067fa7c61fe6b30e369d97 /archiva-modules/archiva-web/archiva-rest/archiva-rest-api/src | |
parent | cb0e4d19d78956b536c62772ae042c281d07ad9f (diff) | |
download | archiva-c7344aa1c443678f69ee280774ab2505391a562a.tar.gz archiva-c7344aa1c443678f69ee280774ab2505391a562a.zip |
Adding user info and password change
Diffstat (limited to 'archiva-modules/archiva-web/archiva-rest/archiva-rest-api/src')
-rw-r--r-- | archiva-modules/archiva-web/archiva-rest/archiva-rest-api/src/main/java/org/apache/archiva/rest/api/services/v2/SecurityConfigurationService.java | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/archiva-modules/archiva-web/archiva-rest/archiva-rest-api/src/main/java/org/apache/archiva/rest/api/services/v2/SecurityConfigurationService.java b/archiva-modules/archiva-web/archiva-rest/archiva-rest-api/src/main/java/org/apache/archiva/rest/api/services/v2/SecurityConfigurationService.java new file mode 100644 index 000000000..b494c3f73 --- /dev/null +++ b/archiva-modules/archiva-web/archiva-rest/archiva-rest-api/src/main/java/org/apache/archiva/rest/api/services/v2/SecurityConfigurationService.java @@ -0,0 +1,28 @@ +package org.apache.archiva.rest.api.services.v2;/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ + +/** + * + * Service for configuration of redback and security related settings. + * + * @author Martin Stockhammer <martin_s@apache.org> + * @since 3.0 + */ +public interface SecurityConfigurationService +{ +} |