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

io.cdap.cdap.config.ConfigStore Maven / Gradle / Ivy

There is a newer version: 6.10.1
Show newest version
/*
 * Copyright © 2015 Cask Data, Inc.
 *
 * 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.cdap.cdap.config;

import java.util.List;

/**
 * Configuration Store.
 */
public interface ConfigStore {

  /**
   * Create a Configuration.
   * @param namespace namespace
   * @param type configuration type
   * @param config configuration object
   * @throws ConfigExistsException if configuration to be created already exists
   */
  void create(String namespace, String type, Config config) throws ConfigExistsException;

  /**
   * Create or update a Configuration.
   * @param namespace namespace
   * @param type configuration type
   * @param config configuration object
   */
  void createOrUpdate(String namespace, String type, Config config);

  /**
   * Delete a Configuration.
   * @param namespace namespace
   * @param type configuration type
   * @param name name of the configuration
   * @throws ConfigNotFoundException if configuration is not found
   */
  void delete(String namespace, String type, String name) throws ConfigNotFoundException;

  /**
   * List all Configurations which are of a specific type.
   * @param namespace namespace
   * @param type configuration type
   * @return list of {@link Config} objects
   */
  List list(String namespace, String type);

  /**
   * Read a Configuration.
   * @param namespace namespace
   * @param type configuration type
   * @param name name of the configuration
   * @return {@link Config}
   * @throws ConfigNotFoundException if configuration is not found
   */
  Config get(String namespace, String type, String name) throws ConfigNotFoundException;

  /**
   * Update a Configuration.
   * @param namespace namespace
   * @param type configuration type
   * @param config {@link Config}
   * @throws ConfigNotFoundException if configuration is not found
   */
  void update(String namespace, String type, Config config) throws ConfigNotFoundException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy