Ice 3.6 Slice API Reference
All Classes Interfaces Structs Exceptions Modules Files Operations Constants Sequences Dictionaries Enumerations Enumerator Pages
Properties.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"]]
13 
14 #include <Ice/PropertiesAdmin.ice>
15 
16 ["objc:prefix:ICE"]
17 module Ice
18 {
19 
28 local interface Properties
29 {
42  string getProperty(string key);
43 
59  string getPropertyWithDefault(string key, string value);
60 
73  int getPropertyAsInt(string key);
74 
91  int getPropertyAsIntWithDefault(string key, int value);
92 
93 
112  StringSeq getPropertyAsList(string key);
113 
135  StringSeq getPropertyAsListWithDefault(string key, StringSeq value);
136 
148  PropertyDict getPropertiesForPrefix(string prefix);
149 
161  void setProperty(string key, string value);
162 
173  StringSeq getCommandLineOptions();
174 
192  StringSeq parseCommandLineOptions(string prefix, StringSeq options);
193 
207  StringSeq parseIceCommandLineOptions(StringSeq options);
208 
216  void load(string file);
217 
225  Properties clone();
226 };
227 
228 };
229 
The Ice core library.
Definition: BuiltinSequences.ice:15
dictionary< string, string > PropertyDict
A simple collection of properties, represented as a dictionary of key/value pairs.
Definition: PropertiesAdmin.ice:28
A property set used to configure Ice and Ice applications.
Definition: Properties.ice:28
sequence< string > StringSeq
A sequence of strings.
Definition: BuiltinSequences.ice:40