blob: eb0d7f9feb259d0989f79a9cfa844b4e6097df67 [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2014 Boeing
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Boeing - initial API and implementation
**********************************************************************/
package org.eclipse.osee.config.admin.internal;
import java.util.Dictionary;
/**
* @author Roberto E. Escobar
*/
public interface ConfigWriter {
void write(String serviceId, Dictionary<String, Object> props);
}