blob: 2405d4d8e0c3948d0b74e6ce61788aa304465e30 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2014 Markus Alexander Kuppe and others. All rights reserved.
* This program and the accompanying materials are made available under the terms
* of the Eclipse Public License v1.0 which accompanies this distribution, and is
* available at http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Markus Alexander Kuppe - initial API and implementation
******************************************************************************/
package org.eclipse.ecf.remoteservice;
import java.util.Dictionary;
import java.util.Map;
/**
* @since 8.3
*
*/
public interface IExtendedRemoteServiceRegistration extends IRemoteServiceRegistration {
/**
* @return A {@link Dictionary} of properties not intended to be used for service advertisement.
*/
public Map<String, Object> getExtraProperties();
}