Java tutorial
/* * Copyright 2012-2017 the original author or authors. * * Licensed 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. */ package io.spring.initializr.metadata; import java.util.List; import java.util.concurrent.CopyOnWriteArrayList; import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonProperty; /** * A {@link ServiceCapabilityType#SINGLE_SELECT single select} capability. * * @author Stephane Nicoll */ public class SingleSelectCapability extends ServiceCapability<List<DefaultMetadataElement>> implements Defaultable<DefaultMetadataElement> { private final List<DefaultMetadataElement> content = new CopyOnWriteArrayList<>(); @JsonCreator SingleSelectCapability(@JsonProperty("id") String id) { this(id, null, null); } public SingleSelectCapability(String id, String title, String description) { super(id, ServiceCapabilityType.SINGLE_SELECT, title, description); } @Override public List<DefaultMetadataElement> getContent() { return content; } /** * Return the default element of this capability. */ @Override public DefaultMetadataElement getDefault() { return content.stream().filter(DefaultMetadataElement::isDefault).findFirst().orElse(null); } /** * Return the element with the specified id or {@code null} if no such element exists. */ public DefaultMetadataElement get(String id) { return content.stream().filter(it -> id.equals(it.getId())).findFirst().orElse(null); } @Override public void merge(List<DefaultMetadataElement> otherContent) { otherContent.forEach(it -> { if (get(it.getId()) == null) { content.add(it); } }); } }