blob: 5b80dfa4f0142ab65062dc68ae915559f57c3cee [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.
using System.Collections.Generic;
using Org.Apache.REEF.Tang.Types;
namespace Org.Apache.REEF.Tang.Interface
{
public interface IConfigurationBuilder
{
void AddConfiguration(IConfiguration c);
IClassHierarchy GetClassHierarchy();
IConfiguration Build();
void Bind(string iface, string impl);
/// <summary>
/// Bind an implementation to an interface with alias language
/// </summary>
/// <param name="iface"></param>
/// <param name="impl"></param>
/// <param name="language"></param>
void Bind(string iface, string impl, string language);
void Bind(INode key, INode value);
void BindConstructor(IClassNode k, IClassNode v); // v extended from ExternalConstructor
string ClassPrettyDefaultString(string longName);
string ClassPrettyDescriptionString(string longName);
void RegisterLegacyConstructor(IClassNode cn, IList<IClassNode> args);
void RegisterLegacyConstructor(string cn, IList<string> args);
void RegisterLegacyConstructor(IClassNode c, IList<IConstructorArg> args);
void BindSetEntry(string iface, string impl);
void BindSetEntry(string iface, INode impl);
void BindSetEntry(INamedParameterNode iface, string impl);
void BindSetEntry(INamedParameterNode iface, INode impl);
void BindList(string iface, IList<string> impl);
void BindList(string iface, IList<INode> impl);
void BindList(INamedParameterNode iface, IList<INode> impl);
void BindList(INamedParameterNode iface, IList<string> impl);
}
}