Ice.PropertiesAdminPrx Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ice-compat Show documentation
Show all versions of ice-compat Show documentation
Ice is a comprehensive RPC framework that helps you build distributed applications with minimal effort using familiar object-oriented idioms
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
//
// Ice version 3.7.5
//
//
//
// Generated from file `PropertiesAdmin.ice'
//
// Warning: do not edit this file.
//
//
//
package Ice;
/**
* The PropertiesAdmin interface provides remote access to the properties
* of a communicator.
*
**/
public interface PropertiesAdminPrx extends ObjectPrx
{
/**
* Get a property by key. If the property is not set, an empty
* string is returned.
*
* @param key The property key.
*
* @return The property value.
*
**/
public String getProperty(String key);
/**
* Get a property by key. If the property is not set, an empty
* string is returned.
*
* @param key The property key.
*
* @param context The Context map to send with the invocation.
* @return The property value.
*
**/
public String getProperty(String key, java.util.Map context);
/**
* Get a property by key. If the property is not set, an empty
* string is returned.
*
* @param key The property key.
*
* @return The asynchronous result object.
**/
public AsyncResult begin_getProperty(String key);
/**
* Get a property by key. If the property is not set, an empty
* string is returned.
*
* @param key The property key.
*
* @param context The Context map to send with the invocation.
* @return The asynchronous result object.
**/
public AsyncResult begin_getProperty(String key, java.util.Map context);
/**
* Get a property by key. If the property is not set, an empty
* string is returned.
*
* @param key The property key.
*
* @param cb The asynchronous callback object.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_getProperty(String key, Callback cb);
/**
* Get a property by key. If the property is not set, an empty
* string is returned.
*
* @param key The property key.
*
* @param context The Context map to send with the invocation.
* @param cb The asynchronous callback object.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_getProperty(String key, java.util.Map context, Callback cb);
/**
* Get a property by key. If the property is not set, an empty
* string is returned.
*
* @param key The property key.
*
* @param cb The asynchronous callback object.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_getProperty(String key, Callback_PropertiesAdmin_getProperty cb);
/**
* Get a property by key. If the property is not set, an empty
* string is returned.
*
* @param key The property key.
*
* @param context The Context map to send with the invocation.
* @param cb The asynchronous callback object.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_getProperty(String key, java.util.Map context, Callback_PropertiesAdmin_getProperty cb);
/**
* Get a property by key. If the property is not set, an empty
* string is returned.
*
* @param key The property key.
*
* @param responseCb The lambda response callback.
* @param exceptionCb The lambda exception callback.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_getProperty(String key,
IceInternal.Functional_GenericCallback1 responseCb,
IceInternal.Functional_GenericCallback1 exceptionCb);
/**
* Get a property by key. If the property is not set, an empty
* string is returned.
*
* @param key The property key.
*
* @param responseCb The lambda response callback.
* @param exceptionCb The lambda exception callback.
* @param sentCb The lambda sent callback.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_getProperty(String key,
IceInternal.Functional_GenericCallback1 responseCb,
IceInternal.Functional_GenericCallback1 exceptionCb,
IceInternal.Functional_BoolCallback sentCb);
/**
* Get a property by key. If the property is not set, an empty
* string is returned.
*
* @param key The property key.
*
* @param context The Context map to send with the invocation.
* @param responseCb The lambda response callback.
* @param exceptionCb The lambda exception callback.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_getProperty(String key,
java.util.Map context,
IceInternal.Functional_GenericCallback1 responseCb,
IceInternal.Functional_GenericCallback1 exceptionCb);
/**
* Get a property by key. If the property is not set, an empty
* string is returned.
*
* @param key The property key.
*
* @param context The Context map to send with the invocation.
* @param responseCb The lambda response callback.
* @param exceptionCb The lambda exception callback.
* @param sentCb The lambda sent callback.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_getProperty(String key,
java.util.Map context,
IceInternal.Functional_GenericCallback1 responseCb,
IceInternal.Functional_GenericCallback1 exceptionCb,
IceInternal.Functional_BoolCallback sentCb);
/**
* Get a property by key. If the property is not set, an empty
* string is returned.
*
* @param result The asynchronous result object.
* @return The property value.
*
**/
public String end_getProperty(Ice.AsyncResult result);
/**
* Get all properties whose keys begin with prefix. If
* prefix is an empty string then all properties are returned.
*
* @param prefix The prefix to search for (empty string if none).
* @return The matching property set.
*
**/
public java.util.Map getPropertiesForPrefix(String prefix);
/**
* Get all properties whose keys begin with prefix. If
* prefix is an empty string then all properties are returned.
*
* @param prefix The prefix to search for (empty string if none).
* @param context The Context map to send with the invocation.
* @return The matching property set.
*
**/
public java.util.Map getPropertiesForPrefix(String prefix, java.util.Map context);
/**
* Get all properties whose keys begin with prefix. If
* prefix is an empty string then all properties are returned.
*
* @param prefix The prefix to search for (empty string if none).
* @return The asynchronous result object.
**/
public AsyncResult begin_getPropertiesForPrefix(String prefix);
/**
* Get all properties whose keys begin with prefix. If
* prefix is an empty string then all properties are returned.
*
* @param prefix The prefix to search for (empty string if none).
* @param context The Context map to send with the invocation.
* @return The asynchronous result object.
**/
public AsyncResult begin_getPropertiesForPrefix(String prefix, java.util.Map context);
/**
* Get all properties whose keys begin with prefix. If
* prefix is an empty string then all properties are returned.
*
* @param prefix The prefix to search for (empty string if none).
* @param cb The asynchronous callback object.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_getPropertiesForPrefix(String prefix, Callback cb);
/**
* Get all properties whose keys begin with prefix. If
* prefix is an empty string then all properties are returned.
*
* @param prefix The prefix to search for (empty string if none).
* @param context The Context map to send with the invocation.
* @param cb The asynchronous callback object.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_getPropertiesForPrefix(String prefix, java.util.Map context, Callback cb);
/**
* Get all properties whose keys begin with prefix. If
* prefix is an empty string then all properties are returned.
*
* @param prefix The prefix to search for (empty string if none).
* @param cb The asynchronous callback object.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_getPropertiesForPrefix(String prefix, Callback_PropertiesAdmin_getPropertiesForPrefix cb);
/**
* Get all properties whose keys begin with prefix. If
* prefix is an empty string then all properties are returned.
*
* @param prefix The prefix to search for (empty string if none).
* @param context The Context map to send with the invocation.
* @param cb The asynchronous callback object.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_getPropertiesForPrefix(String prefix, java.util.Map context, Callback_PropertiesAdmin_getPropertiesForPrefix cb);
/**
* Get all properties whose keys begin with prefix. If
* prefix is an empty string then all properties are returned.
*
* @param prefix The prefix to search for (empty string if none).
* @param responseCb The lambda response callback.
* @param exceptionCb The lambda exception callback.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_getPropertiesForPrefix(String prefix,
IceInternal.Functional_GenericCallback1> responseCb,
IceInternal.Functional_GenericCallback1 exceptionCb);
/**
* Get all properties whose keys begin with prefix. If
* prefix is an empty string then all properties are returned.
*
* @param prefix The prefix to search for (empty string if none).
* @param responseCb The lambda response callback.
* @param exceptionCb The lambda exception callback.
* @param sentCb The lambda sent callback.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_getPropertiesForPrefix(String prefix,
IceInternal.Functional_GenericCallback1> responseCb,
IceInternal.Functional_GenericCallback1 exceptionCb,
IceInternal.Functional_BoolCallback sentCb);
/**
* Get all properties whose keys begin with prefix. If
* prefix is an empty string then all properties are returned.
*
* @param prefix The prefix to search for (empty string if none).
* @param context The Context map to send with the invocation.
* @param responseCb The lambda response callback.
* @param exceptionCb The lambda exception callback.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_getPropertiesForPrefix(String prefix,
java.util.Map context,
IceInternal.Functional_GenericCallback1> responseCb,
IceInternal.Functional_GenericCallback1 exceptionCb);
/**
* Get all properties whose keys begin with prefix. If
* prefix is an empty string then all properties are returned.
*
* @param prefix The prefix to search for (empty string if none).
* @param context The Context map to send with the invocation.
* @param responseCb The lambda response callback.
* @param exceptionCb The lambda exception callback.
* @param sentCb The lambda sent callback.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_getPropertiesForPrefix(String prefix,
java.util.Map context,
IceInternal.Functional_GenericCallback1> responseCb,
IceInternal.Functional_GenericCallback1 exceptionCb,
IceInternal.Functional_BoolCallback sentCb);
/**
* Get all properties whose keys begin with prefix. If
* prefix is an empty string then all properties are returned.
*
* @param result The asynchronous result object.
* @return The matching property set.
*
**/
public java.util.Map end_getPropertiesForPrefix(Ice.AsyncResult result);
/**
* Update the communicator's properties with the given property set.
*
* @param newProperties Properties to be added, changed, or removed.
* If an entry in newProperties matches the name of an existing property,
* that property's value is replaced with the new value. If the new value
* is an empty string, the property is removed. Any existing properties
* that are not modified or removed by the entries in newProperties are
* retained with their original values.
*
**/
public void setProperties(java.util.Map newProperties);
/**
* Update the communicator's properties with the given property set.
*
* @param newProperties Properties to be added, changed, or removed.
* If an entry in newProperties matches the name of an existing property,
* that property's value is replaced with the new value. If the new value
* is an empty string, the property is removed. Any existing properties
* that are not modified or removed by the entries in newProperties are
* retained with their original values.
*
* @param context The Context map to send with the invocation.
**/
public void setProperties(java.util.Map newProperties, java.util.Map context);
/**
* Update the communicator's properties with the given property set.
*
* @param newProperties Properties to be added, changed, or removed.
* If an entry in newProperties matches the name of an existing property,
* that property's value is replaced with the new value. If the new value
* is an empty string, the property is removed. Any existing properties
* that are not modified or removed by the entries in newProperties are
* retained with their original values.
*
* @return The asynchronous result object.
**/
public AsyncResult begin_setProperties(java.util.Map newProperties);
/**
* Update the communicator's properties with the given property set.
*
* @param newProperties Properties to be added, changed, or removed.
* If an entry in newProperties matches the name of an existing property,
* that property's value is replaced with the new value. If the new value
* is an empty string, the property is removed. Any existing properties
* that are not modified or removed by the entries in newProperties are
* retained with their original values.
*
* @param context The Context map to send with the invocation.
* @return The asynchronous result object.
**/
public AsyncResult begin_setProperties(java.util.Map newProperties, java.util.Map context);
/**
* Update the communicator's properties with the given property set.
*
* @param newProperties Properties to be added, changed, or removed.
* If an entry in newProperties matches the name of an existing property,
* that property's value is replaced with the new value. If the new value
* is an empty string, the property is removed. Any existing properties
* that are not modified or removed by the entries in newProperties are
* retained with their original values.
*
* @param cb The asynchronous callback object.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_setProperties(java.util.Map newProperties, Callback cb);
/**
* Update the communicator's properties with the given property set.
*
* @param newProperties Properties to be added, changed, or removed.
* If an entry in newProperties matches the name of an existing property,
* that property's value is replaced with the new value. If the new value
* is an empty string, the property is removed. Any existing properties
* that are not modified or removed by the entries in newProperties are
* retained with their original values.
*
* @param context The Context map to send with the invocation.
* @param cb The asynchronous callback object.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_setProperties(java.util.Map newProperties, java.util.Map context, Callback cb);
/**
* Update the communicator's properties with the given property set.
*
* @param newProperties Properties to be added, changed, or removed.
* If an entry in newProperties matches the name of an existing property,
* that property's value is replaced with the new value. If the new value
* is an empty string, the property is removed. Any existing properties
* that are not modified or removed by the entries in newProperties are
* retained with their original values.
*
* @param cb The asynchronous callback object.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_setProperties(java.util.Map newProperties, Callback_PropertiesAdmin_setProperties cb);
/**
* Update the communicator's properties with the given property set.
*
* @param newProperties Properties to be added, changed, or removed.
* If an entry in newProperties matches the name of an existing property,
* that property's value is replaced with the new value. If the new value
* is an empty string, the property is removed. Any existing properties
* that are not modified or removed by the entries in newProperties are
* retained with their original values.
*
* @param context The Context map to send with the invocation.
* @param cb The asynchronous callback object.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_setProperties(java.util.Map newProperties, java.util.Map context, Callback_PropertiesAdmin_setProperties cb);
/**
* Update the communicator's properties with the given property set.
*
* @param newProperties Properties to be added, changed, or removed.
* If an entry in newProperties matches the name of an existing property,
* that property's value is replaced with the new value. If the new value
* is an empty string, the property is removed. Any existing properties
* that are not modified or removed by the entries in newProperties are
* retained with their original values.
*
* @param responseCb The lambda response callback.
* @param exceptionCb The lambda exception callback.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_setProperties(java.util.Map newProperties,
IceInternal.Functional_VoidCallback responseCb,
IceInternal.Functional_GenericCallback1 exceptionCb);
/**
* Update the communicator's properties with the given property set.
*
* @param newProperties Properties to be added, changed, or removed.
* If an entry in newProperties matches the name of an existing property,
* that property's value is replaced with the new value. If the new value
* is an empty string, the property is removed. Any existing properties
* that are not modified or removed by the entries in newProperties are
* retained with their original values.
*
* @param responseCb The lambda response callback.
* @param exceptionCb The lambda exception callback.
* @param sentCb The lambda sent callback.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_setProperties(java.util.Map newProperties,
IceInternal.Functional_VoidCallback responseCb,
IceInternal.Functional_GenericCallback1 exceptionCb,
IceInternal.Functional_BoolCallback sentCb);
/**
* Update the communicator's properties with the given property set.
*
* @param newProperties Properties to be added, changed, or removed.
* If an entry in newProperties matches the name of an existing property,
* that property's value is replaced with the new value. If the new value
* is an empty string, the property is removed. Any existing properties
* that are not modified or removed by the entries in newProperties are
* retained with their original values.
*
* @param context The Context map to send with the invocation.
* @param responseCb The lambda response callback.
* @param exceptionCb The lambda exception callback.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_setProperties(java.util.Map newProperties,
java.util.Map context,
IceInternal.Functional_VoidCallback responseCb,
IceInternal.Functional_GenericCallback1 exceptionCb);
/**
* Update the communicator's properties with the given property set.
*
* @param newProperties Properties to be added, changed, or removed.
* If an entry in newProperties matches the name of an existing property,
* that property's value is replaced with the new value. If the new value
* is an empty string, the property is removed. Any existing properties
* that are not modified or removed by the entries in newProperties are
* retained with their original values.
*
* @param context The Context map to send with the invocation.
* @param responseCb The lambda response callback.
* @param exceptionCb The lambda exception callback.
* @param sentCb The lambda sent callback.
* @return The asynchronous result object.
**/
public Ice.AsyncResult begin_setProperties(java.util.Map newProperties,
java.util.Map context,
IceInternal.Functional_VoidCallback responseCb,
IceInternal.Functional_GenericCallback1 exceptionCb,
IceInternal.Functional_BoolCallback sentCb);
/**
* Update the communicator's properties with the given property set.
*
* @param result The asynchronous result object.
**/
public void end_setProperties(Ice.AsyncResult result);
}