blob: 1597ab1ae0ee818c55057cb9318e98fa2e344333 [file] [log] [blame]
/*
* 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.drill.exec.record.metadata;
import java.util.Map;
/**
* Interface for an object that defines properties. Used in conjunction with
* {@link PropertyAccessor}.
*/
public interface Propertied {
/**
* Base name for properties which Drill itself defines. Provides a
* separate "name space" from user-defined properties which should
* have some other perfix.
*/
public static final String DRILL_PROP_PREFIX = "drill.";
/**
* Sets schema properties if not null.
*
* @param properties schema properties
*/
void setProperties(Map<String, String> properties);
Map<String, String> properties();
String property(String key);
String property(String key, String defValue);
void setProperty(String key, String value);
boolean booleanProperty(String key);
boolean booleanProperty(String key, boolean defaultValue);
void setBooleanProperty(String key, boolean value);
int intProperty(String key);
int intProperty(String key, int defaultValue);
void setIntProperty(String key, int value);
/**
* Drill-wide properties are of the form:<br><tt>
* drill.<prop name></tt><br>
* While plugin-specific properties are of the form:<tt><br>
* drill.<plugin name>.<config prop name></br>
* Where "config prop name" is the field name in the plugin config.
* <p>
* This function generates the "drill.<plugin name>." prefix.
*
* @param pluginName name used in the "type" field of the plugin
* config
* @return the "drill.<plugin name>." prefix
*/
public static String pluginPrefix(String pluginName) {
return DRILL_PROP_PREFIX + pluginName + ".";
}
}