~ubuntu-branches/ubuntu/raring/opendrim-lmp-systemmemory/raring

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
/*###############################################################################
# Linux Management Providers (LMP), System Memory provider package
# Copyright (C) 2008 Guillaume BOTTEX, ETRI <guillaumebottex@etri.re.kr, guillaumebottex@gmail.com>
#
# This program is being developed under the "OpenDRIM" project.
# The "OpenDRIM" project web page: http://opendrim.sourceforge.net
# The "OpenDRIM" project mailing list: opendrim@googlegroups.com
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; version 2
# of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
#################################################################################

#################################################################################
# To contributors, please leave your contact information in this section
# AND comment your changes in the source code.
#
# Modified by <Author(s)>, <Affiliation>, <Year>
###############################################################################*/

#ifndef OPENDRIM_ENABLEDMEMORYCAPABILITIES_H_
#define OPENDRIM_ENABLEDMEMORYCAPABILITIES_H_

#include <Instance.h>

const static char* OpenDRIM_EnabledMemoryCapabilities_classnames[] = {"OpenDRIM_EnabledMemoryCapabilities"};
static string OpenDRIM_EnabledMemoryCapabilities_NAMESPACE = _NAMESPACE;

class OpenDRIM_EnabledMemoryCapabilities {

public:
	
	string Caption;
	bool Caption_isNULL;
	
	string Description;
	bool Description_isNULL;
	
	string InstanceID;
	bool InstanceID_isNULL;
	
	string ElementName;
	bool ElementName_isNULL;
	
	bool ElementNameEditSupported;
	bool ElementNameEditSupported_isNULL;
	
	unsigned short MaxElementNameLen;
	bool MaxElementNameLen_isNULL;
	
	vector<unsigned short> RequestedStatesSupported;
	bool RequestedStatesSupported_isNULL;
	
	string ElementNameMask;
	bool ElementNameMask_isNULL;
	
	vector<unsigned short> StateAwareness;
	bool StateAwareness_isNULL;
	
	OpenDRIM_EnabledMemoryCapabilities() {
		Caption_isNULL = true;
		Description_isNULL = true;
		InstanceID_isNULL = true;
		ElementName_isNULL = true;
		ElementNameEditSupported_isNULL = true;
		MaxElementNameLen_isNULL = true;
		RequestedStatesSupported_isNULL = true;
		ElementNameMask_isNULL = true;
		StateAwareness_isNULL = true;
	}
	
	~OpenDRIM_EnabledMemoryCapabilities() {}
	
	string getKeys() const {
		return CF_toLowCase(".InstanceID=\"" + CF_quoteString(InstanceID) + "\"");
	}

	int getCaption(string& value) const {
		if (Caption_isNULL==true)
			return NOT_FOUND;
		value = Caption;
		return OK;
	}
	
	int setCaption(const string& newValue) {
		Caption = newValue;
		Caption_isNULL = false;
		return OK;
	}

	int getDescription(string& value) const {
		if (Description_isNULL==true)
			return NOT_FOUND;
		value = Description;
		return OK;
	}
	
	int setDescription(const string& newValue) {
		Description = newValue;
		Description_isNULL = false;
		return OK;
	}

	int getInstanceID(string& value) const {
		if (InstanceID_isNULL==true)
			return NOT_FOUND;
		value = InstanceID;
		return OK;
	}
	
	int setInstanceID(const string& newValue) {
		InstanceID = newValue;
		InstanceID_isNULL = false;
		return OK;
	}

	int getElementName(string& value) const {
		if (ElementName_isNULL==true)
			return NOT_FOUND;
		value = ElementName;
		return OK;
	}
	
	int setElementName(const string& newValue) {
		ElementName = newValue;
		ElementName_isNULL = false;
		return OK;
	}

	int getElementNameEditSupported(bool& value) const {
		if (ElementNameEditSupported_isNULL==true)
			return NOT_FOUND;
		value = ElementNameEditSupported;
		return OK;
	}
	
	int setElementNameEditSupported(const bool& newValue) {
		ElementNameEditSupported = newValue;
		ElementNameEditSupported_isNULL = false;
		return OK;
	}

	int getMaxElementNameLen(unsigned short& value) const {
		if (MaxElementNameLen_isNULL==true)
			return NOT_FOUND;
		value = MaxElementNameLen;
		return OK;
	}
	
	int setMaxElementNameLen(const unsigned short& newValue) {
		MaxElementNameLen = newValue;
		MaxElementNameLen_isNULL = false;
		return OK;
	}

	int getRequestedStatesSupported(vector<unsigned short>& value) const {
		if (RequestedStatesSupported_isNULL==true)
			return NOT_FOUND;
		value = RequestedStatesSupported;
		return OK;
	}
	
	int setRequestedStatesSupported(const vector<unsigned short>& newValue) {
		RequestedStatesSupported = newValue;
		RequestedStatesSupported_isNULL = false;
		return OK;
	}

	int getElementNameMask(string& value) const {
		if (ElementNameMask_isNULL==true)
			return NOT_FOUND;
		value = ElementNameMask;
		return OK;
	}
	
	int setElementNameMask(const string& newValue) {
		ElementNameMask = newValue;
		ElementNameMask_isNULL = false;
		return OK;
	}

	int getStateAwareness(vector<unsigned short>& value) const {
		if (StateAwareness_isNULL==true)
			return NOT_FOUND;
		value = StateAwareness;
		return OK;
	}
	
	int setStateAwareness(const vector<unsigned short>& newValue) {
		StateAwareness = newValue;
		StateAwareness_isNULL = false;
		return OK;
	}

};

class OpenDRIM_EnabledMemoryCapabilities_CreateGoalSettings_In {

public:

	vector<string> TemplateGoalSettings;
	bool TemplateGoalSettings_isNULL;

	vector<string> SupportedGoalSettings;
	bool SupportedGoalSettings_isNULL;

	OpenDRIM_EnabledMemoryCapabilities_CreateGoalSettings_In() {
		TemplateGoalSettings_isNULL = true;
		SupportedGoalSettings_isNULL = true;
	}

	~OpenDRIM_EnabledMemoryCapabilities_CreateGoalSettings_In() {}

	int getTemplateGoalSettings(vector<string>& value) const {
		if (TemplateGoalSettings_isNULL == true)
			return NOT_FOUND;
		value = TemplateGoalSettings;
		return OK;
	}
	int setTemplateGoalSettings(const vector<string>&  newValue) {
		TemplateGoalSettings = newValue;
		TemplateGoalSettings_isNULL = false;
		return OK;
	}

	int getSupportedGoalSettings(vector<string>& value) const {
		if (SupportedGoalSettings_isNULL == true)
			return NOT_FOUND;
		value = SupportedGoalSettings;
		return OK;
	}
	int setSupportedGoalSettings(const vector<string>&  newValue) {
		SupportedGoalSettings = newValue;
		SupportedGoalSettings_isNULL = false;
		return OK;
	}

};

class OpenDRIM_EnabledMemoryCapabilities_CreateGoalSettings_Out {

public:

	vector<string> SupportedGoalSettings;
	bool SupportedGoalSettings_isNULL;

	OpenDRIM_EnabledMemoryCapabilities_CreateGoalSettings_Out() {
		SupportedGoalSettings_isNULL = true;
	}

	~OpenDRIM_EnabledMemoryCapabilities_CreateGoalSettings_Out() {}

	int getSupportedGoalSettings(vector<string>& value) const {
		if (SupportedGoalSettings_isNULL == true)
			return NOT_FOUND;
		value = SupportedGoalSettings;
		return OK;
	}
	int setSupportedGoalSettings(const vector<string>&  newValue) {
		SupportedGoalSettings = newValue;
		SupportedGoalSettings_isNULL = false;
		return OK;
	}

};

#endif /*OPENDRIM_ENABLEDMEMORYCAPABILITIES_H_*/