1package org.apache.archiva.rest.api.model;
2/*3 * Licensed to the Apache Software Foundation (ASF) under one4 * or more contributor license agreements. See the NOTICE file5 * distributed with this work for additional information6 * regarding copyright ownership. The ASF licenses this file7 * to you under the Apache License, Version 2.0 (the8 * "License"); you may not use this file except in compliance9 * with the License. You may obtain a copy of the License at10 *11 * http://www.apache.org/licenses/LICENSE-2.012 *13 * Unless required by applicable law or agreed to in writing,14 * software distributed under the License is distributed on an15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY16 * KIND, either express or implied. See the License for the17 * specific language governing permissions and limitations18 * under the License.19 */2021import javax.xml.bind.annotation.XmlRootElement;
22import java.util.List;
2324/**25 * @author Olivier Lamy26 * @since 1.4-M427 */28 @XmlRootElement( name = "redbackImplementationsInformations" )
29publicclassRedbackImplementationsInformations30 {
31private List<UserManagerImplementationInformation> userManagerImplementationInformations;
3233private List<RBACManagerImplementationInformation> rbacManagerImplementationInformations;
3435publicRedbackImplementationsInformations()
36 {
37// no op38 }
3940publicRedbackImplementationsInformations(
41 List<UserManagerImplementationInformation> userManagerImplementationInformations,
42 List<RBACManagerImplementationInformation> rbacManagerImplementationInformations )
43 {
44this.userManagerImplementationInformations = userManagerImplementationInformations;
45this.rbacManagerImplementationInformations = rbacManagerImplementationInformations;
46 }
4748public List<UserManagerImplementationInformation> getUserManagerImplementationInformations()
49 {
50return userManagerImplementationInformations;
51 }
5253publicvoid setUserManagerImplementationInformations(
54 List<UserManagerImplementationInformation> userManagerImplementationInformations )
55 {
56this.userManagerImplementationInformations = userManagerImplementationInformations;
57 }
5859public List<RBACManagerImplementationInformation> getRbacManagerImplementationInformations()
60 {
61return rbacManagerImplementationInformations;
62 }
6364publicvoid setRbacManagerImplementationInformations(
65 List<RBACManagerImplementationInformation> rbacManagerImplementationInformations )
66 {
67this.rbacManagerImplementationInformations = rbacManagerImplementationInformations;
68 }
6970 @Override
71public String toString()
72 {
73final StringBuilder sb = new StringBuilder();
74 sb.append( "RedbackImplementationsInformations" );
75 sb.append( "{userManagerImplementationInformations=" ).append( userManagerImplementationInformations );
76 sb.append( ", rbacManagerImplementationInformations=" ).append( rbacManagerImplementationInformations );
77 sb.append( '}' );
78return sb.toString();
79 }
80 }