Ice 3.6 Slice API Reference
All Classes Interfaces Structs Exceptions Modules Files Operations Constants Sequences Dictionaries Enumerations Enumerator Pages
PropertiesAdmin.ice
Go to the documentation of this file.
1 // **********************************************************************
2 //
3 // Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
4 //
5 // This copy of Ice is licensed to you under the terms described in the
6 // ICE_LICENSE file included in this distribution.
7 //
8 // **********************************************************************
9 
10 #pragma once
11 
12 [["cpp:header-ext:h", "objc:header-dir:objc", "js:ice-build"]]
13 
14 #include <Ice/BuiltinSequences.ice>
15 
16 ["objc:prefix:ICE"]
17 module Ice
18 {
19 
28 dictionary<string, string> PropertyDict;
29 
36 interface PropertiesAdmin
37 {
48  string getProperty(string key);
49 
59  ["java:type:java.util.TreeMap<String, String>"] PropertyDict getPropertiesForPrefix(string prefix);
60 
73  ["amd"] void setProperties(PropertyDict newProperties);
74 };
75 
76 };
The Ice core library.
Definition: BuiltinSequences.ice:15
The PropertiesAdmin interface provides remote access to the properties of a communicator.
Definition: PropertiesAdmin.ice:36
dictionary< string, string > PropertyDict
A simple collection of properties, represented as a dictionary of key/value pairs.
Definition: PropertiesAdmin.ice:28