gnodet-bot commented on code in PR #13118: URL: https://github.com/apache/maven/pull/13118#discussion_r4011027433
########## api/maven-api-spi/src/main/java/org/apache/maven/api/spi/SettingsParser.java: ########## @@ -0,0 +1,83 @@ +/* + * 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. + */ +package org.apache.maven.api.spi; + +import java.io.IOException; +import java.util.Map; + +import org.apache.maven.api.annotations.Consumer; +import org.apache.maven.api.annotations.Experimental; +import org.apache.maven.api.annotations.Nonnull; +import org.apache.maven.api.annotations.Nullable; +import org.apache.maven.api.di.Named; +import org.apache.maven.api.services.Source; +import org.apache.maven.api.settings.Settings; + +/** + * Parses settings in an additional syntax. Maven selects a parser for each settings source, + * then performs interpolation, decryption, validation and merging on the returned settings. + * If no parser supports a source, Maven uses its XML settings reader. Multiple parsers + * supporting the same source are an error. + * <p> + * Parsers must be available in the container building the settings. In particular, a parser + * supplied by a core extension cannot read the bootstrap settings needed to resolve that + * extension. This SPI does not change settings file discovery or extension loading. + * + * @since 4.1.0 + */ +@Experimental +@Consumer +@Named +public interface SettingsParser extends SpiService { + /** + * Boolean parsing option indicating whether unknown input should be rejected. + */ + /** + * Option that can be specified in the options map. The value should be a {@code Boolean}; + * when {@code true} or absent, unknown input is rejected. + */ + String STRICT = "strict"; Review Comment: test comment -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
