All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.helidon.config.hocon.package-info Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2017, 2022 Oracle and/or its affiliates.
 *
 * 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.
 */

/**
 * HOCON format ConfigParser implementation using Typesafe (Lightbend) Config library.
 * 

* It supports {@link io.helidon.common.media.type.MediaTypes#APPLICATION_HOCON} and * {@link io.helidon.common.media.type.MediaTypes#APPLICATION_JSON} formats. *

* The parser implementation supports {@link java.util.ServiceLoader}, i.e. {@link io.helidon.config.Config.Builder} * can automatically load and register HOCON ConfigParser instance, * if not {@link io.helidon.config.Config.Builder#disableParserServices() disabled}. * Weight of the parser to be used by {@link io.helidon.config.Config.Builder}, * if loaded automatically as a {@link java.util.ServiceLoader service}, * is {@value io.helidon.config.hocon.HoconConfigParser#WEIGHT}. * And of course it can be {@link io.helidon.config.Config.Builder#addParser(io.helidon.config.spi.ConfigParser) * registered programmatically} using {@link io.helidon.config.hocon.HoconConfigParserBuilder builder API}. *

* HOCON (Typesafe Config) integration is placed in {@code io.helidon.config.hocon} Java 9 module. * Maven coordinates are {@code io.helidon.config:helidon-config-hocon}. * * @see io.helidon.config Configuration API * @see io.helidon.config.spi Configuration SPI */ package io.helidon.config.hocon;





© 2015 - 2025 Weber Informatics LLC | Privacy Policy