001/*
002 * CDDL HEADER START
003 *
004 * The contents of this file are subject to the terms of the
005 * Common Development and Distribution License, Version 1.0 only
006 * (the "License").  You may not use this file except in compliance
007 * with the License.
008 *
009 * You can obtain a copy of the license at
010 * http://www.opensource.org/licenses/cddl1.php.
011 * See the License for the specific language governing permissions
012 * and limitations under the License.
013 *
014 * When distributing Covered Code, include this CDDL HEADER in each
015 * file. If applicable, add the following below this CDDL HEADER,
016 * with the fields enclosed by brackets "[]" replaced with your own
017 * identifying information:
018 *      Portions Copyright [yyyy] [name of copyright owner]
019 *
020 * CDDL HEADER END
021 *
022 *
023 *      Copyright 2013-2021 Ping Identity Corporation
024 */
025package com.unboundid.directory.sdk.broker.config;
026
027
028
029import com.unboundid.util.NotExtensible;
030import com.unboundid.util.ThreadSafety;
031import com.unboundid.util.ThreadSafetyLevel;
032
033
034/**
035 * This interface defines a set of methods that may be used to obtain
036 * information about the general configuration for a store adapter.
037 */
038@NotExtensible()
039@ThreadSafety(level=ThreadSafetyLevel.INTERFACE_NOT_THREADSAFE)
040public interface StoreAdapterConfig extends GenericBrokerConfig
041{
042}