1package org.apache.archiva.rest.services.utils;
23/*4 * Licensed to the Apache Software Foundation (ASF) under one5 * or more contributor license agreements. See the NOTICE file6 * distributed with this work for additional information7 * regarding copyright ownership. The ASF licenses this file8 * to you under the Apache License, Version 2.0 (the9 * "License"); you may not use this file except in compliance10 * with the License. You may obtain a copy of the License at11 *12 * http://www.apache.org/licenses/LICENSE-2.013 *14 * Unless required by applicable law or agreed to in writing,15 * software distributed under the License is distributed on an16 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY17 * KIND, either express or implied. See the License for the18 * specific language governing permissions and limitations19 * under the License.20 */2122import org.apache.archiva.rest.api.model.AdminRepositoryConsumer;
23import org.apache.commons.collections.Closure;
24import org.apache.archiva.consumers.RepositoryContentConsumer;
2526import java.util.ArrayList;
27import java.util.List;
2829/**30 * AddAdminRepoConsumerClosure 31 *32 *33 */34publicclassAddAdminRepoConsumerClosure35implements Closure
36 {
37private List<AdminRepositoryConsumer> list = new ArrayList<>();
3839private List<String> selectedIds;
4041publicAddAdminRepoConsumerClosure( List<String> selectedIds )
42 {
43this.selectedIds = selectedIds;
44 }
4546 @Override
47publicvoid execute( Object input )
48 {
49if ( input instanceof RepositoryContentConsumer )
50 {
51 RepositoryContentConsumer consumer = (RepositoryContentConsumer) input;
5253boolean enabled = this.selectedIds.contains( consumer.getId() );
54 AdminRepositoryConsumer adminconsumer = new AdminRepositoryConsumer();
55 adminconsumer.setEnabled( enabled );
56 adminconsumer.setId( consumer.getId() );
57 adminconsumer.setDescription( consumer.getDescription() );
5859 list.add( adminconsumer );
60 }
61 }
6263public List<AdminRepositoryConsumer> getList()
64 {
65return list;
66 }
67 }