aboutsummaryrefslogtreecommitdiffstats
path: root/dcae-controller-core/dcae-controller-core-model/src/main/xcore-gen/org/openecomp/dcae/controller/core/server/impl/DcaeBasicServerImpl.java
blob: 3da755c88fd4cc9ca61e78c21ccb8fd2b508dd1f (plain)
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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
/*-
 * ============LICENSE_START==========================================
 * OPENECOMP - DCAE
 * ===================================================================
 * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
 * ===================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *        http://www.apache.org/licenses/LICENSE-2.0 
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END============================================
 */
	
/**
 */
package org.openecomp.dcae.controller.core.server.impl;

import org.openecomp.dcae.controller.core.server.DcaeBasicServer;
import org.openecomp.dcae.controller.core.server.DcaeBasicServerNetwork;
import org.openecomp.dcae.controller.core.server.ServerPackage;
import org.openecomp.ncomp.core.CorePackage;
import org.openecomp.ncomp.core.HasOperationalState;
import org.openecomp.ncomp.core.OperationalState;
import org.openecomp.ncomp.core.impl.NamedEntityImpl;
import org.openecomp.ncomp.core.logs.LogMessageCategory;
import org.openecomp.ncomp.core.logs.LogMessageContainer;
import org.openecomp.ncomp.core.logs.LogMessageContainerConfiguration;
import org.openecomp.ncomp.core.logs.LogMessageStats;
import org.openecomp.ncomp.core.logs.LogsPackage;
import org.openecomp.ncomp.core.types.metrics.DateMetricAttribute;
import org.openecomp.ncomp.openstack.compute.Server;
import org.openecomp.ncomp.openstack.core.VirtualMachineType;
import org.openecomp.ncomp.openstack.location.Hypervisor;
import org.openecomp.ncomp.sirius.manager.agent.collectd.CollectdServer;
import org.openecomp.ncomp.sirius.manager.properties.Module;
import java.util.Collection;
import org.eclipse.emf.common.notify.Notification;
import org.eclipse.emf.common.notify.NotificationChain;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.EClass;
import org.eclipse.emf.ecore.InternalEObject;
import org.eclipse.emf.ecore.impl.ENotificationImpl;
import org.eclipse.emf.ecore.util.EObjectContainmentEList;
import org.eclipse.emf.ecore.util.InternalEList;

/**
 * <!-- begin-user-doc -->
 * An implementation of the model object '<em><b>Dcae Basic Server</b></em>'.
 * <!-- end-user-doc -->
 * <p>
 * The following features are implemented:
 * <ul>
 *   <li>{@link org.openecomp.dcae.controller.core.server.impl.DcaeBasicServerImpl#getOperationalState <em>Operational State</em>}</li>
 *   <li>{@link org.openecomp.dcae.controller.core.server.impl.DcaeBasicServerImpl#getLogMessageConfiguration <em>Log Message Configuration</em>}</li>
 *   <li>{@link org.openecomp.dcae.controller.core.server.impl.DcaeBasicServerImpl#getLogMessageCategories <em>Log Message Categories</em>}</li>
 *   <li>{@link org.openecomp.dcae.controller.core.server.impl.DcaeBasicServerImpl#getLogMessageStats <em>Log Message Stats</em>}</li>
 *   <li>{@link org.openecomp.dcae.controller.core.server.impl.DcaeBasicServerImpl#getPrivateIp <em>Private Ip</em>}</li>
 *   <li>{@link org.openecomp.dcae.controller.core.server.impl.DcaeBasicServerImpl#getPublicIp <em>Public Ip</em>}</li>
 *   <li>{@link org.openecomp.dcae.controller.core.server.impl.DcaeBasicServerImpl#getCollectd <em>Collectd</em>}</li>
 *   <li>{@link org.openecomp.dcae.controller.core.server.impl.DcaeBasicServerImpl#getModules <em>Modules</em>}</li>
 *   <li>{@link org.openecomp.dcae.controller.core.server.impl.DcaeBasicServerImpl#getNetworks <em>Networks</em>}</li>
 *   <li>{@link org.openecomp.dcae.controller.core.server.impl.DcaeBasicServerImpl#getLastUpdate <em>Last Update</em>}</li>
 *   <li>{@link org.openecomp.dcae.controller.core.server.impl.DcaeBasicServerImpl#isUsingMonitoringAgent <em>Using Monitoring Agent</em>}</li>
 *   <li>{@link org.openecomp.dcae.controller.core.server.impl.DcaeBasicServerImpl#getServer <em>Server</em>}</li>
 *   <li>{@link org.openecomp.dcae.controller.core.server.impl.DcaeBasicServerImpl#getHypervisor <em>Hypervisor</em>}</li>
 *   <li>{@link org.openecomp.dcae.controller.core.server.impl.DcaeBasicServerImpl#getVmType <em>Vm Type</em>}</li>
 *   <li>{@link org.openecomp.dcae.controller.core.server.impl.DcaeBasicServerImpl#getCertificatePassword <em>Certificate Password</em>}</li>
 * </ul>
 * </p>
 *
 * @generated
 */
public class DcaeBasicServerImpl extends NamedEntityImpl implements DcaeBasicServer {
	/**
	 * The default value of the '{@link #getOperationalState() <em>Operational State</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getOperationalState()
	 * @generated
	 * @ordered
	 */
	protected static final OperationalState OPERATIONAL_STATE_EDEFAULT = OperationalState.OPERATIONAL;

	/**
	 * The cached value of the '{@link #getOperationalState() <em>Operational State</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getOperationalState()
	 * @generated
	 * @ordered
	 */
	protected OperationalState operationalState = OPERATIONAL_STATE_EDEFAULT;

	/**
	 * The cached value of the '{@link #getLogMessageConfiguration() <em>Log Message Configuration</em>}' containment reference.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getLogMessageConfiguration()
	 * @generated
	 * @ordered
	 */
	protected LogMessageContainerConfiguration logMessageConfiguration;

	/**
	 * The cached value of the '{@link #getLogMessageCategories() <em>Log Message Categories</em>}' containment reference list.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getLogMessageCategories()
	 * @generated
	 * @ordered
	 */
	protected EList<LogMessageCategory> logMessageCategories;

	/**
	 * The cached value of the '{@link #getLogMessageStats() <em>Log Message Stats</em>}' containment reference list.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getLogMessageStats()
	 * @generated
	 * @ordered
	 */
	protected EList<LogMessageStats> logMessageStats;

	/**
	 * The default value of the '{@link #getPrivateIp() <em>Private Ip</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getPrivateIp()
	 * @generated
	 * @ordered
	 */
	protected static final String PRIVATE_IP_EDEFAULT = null;

	/**
	 * The cached value of the '{@link #getPrivateIp() <em>Private Ip</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getPrivateIp()
	 * @generated
	 * @ordered
	 */
	protected String privateIp = PRIVATE_IP_EDEFAULT;

	/**
	 * The default value of the '{@link #getPublicIp() <em>Public Ip</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getPublicIp()
	 * @generated
	 * @ordered
	 */
	protected static final String PUBLIC_IP_EDEFAULT = null;

	/**
	 * The cached value of the '{@link #getPublicIp() <em>Public Ip</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getPublicIp()
	 * @generated
	 * @ordered
	 */
	protected String publicIp = PUBLIC_IP_EDEFAULT;

	/**
	 * The cached value of the '{@link #getCollectd() <em>Collectd</em>}' containment reference.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getCollectd()
	 * @generated
	 * @ordered
	 */
	protected CollectdServer collectd;

	/**
	 * The cached value of the '{@link #getModules() <em>Modules</em>}' containment reference list.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getModules()
	 * @generated
	 * @ordered
	 */
	protected EList<Module> modules;

	/**
	 * The cached value of the '{@link #getNetworks() <em>Networks</em>}' containment reference list.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getNetworks()
	 * @generated
	 * @ordered
	 */
	protected EList<DcaeBasicServerNetwork> networks;

	/**
	 * The default value of the '{@link #getLastUpdate() <em>Last Update</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getLastUpdate()
	 * @generated
	 * @ordered
	 */
	protected static final DateMetricAttribute LAST_UPDATE_EDEFAULT = null;

	/**
	 * The cached value of the '{@link #getLastUpdate() <em>Last Update</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getLastUpdate()
	 * @generated
	 * @ordered
	 */
	protected DateMetricAttribute lastUpdate = LAST_UPDATE_EDEFAULT;

	/**
	 * The default value of the '{@link #isUsingMonitoringAgent() <em>Using Monitoring Agent</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #isUsingMonitoringAgent()
	 * @generated
	 * @ordered
	 */
	protected static final boolean USING_MONITORING_AGENT_EDEFAULT = true;

	/**
	 * The cached value of the '{@link #isUsingMonitoringAgent() <em>Using Monitoring Agent</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #isUsingMonitoringAgent()
	 * @generated
	 * @ordered
	 */
	protected boolean usingMonitoringAgent = USING_MONITORING_AGENT_EDEFAULT;

	/**
	 * The cached value of the '{@link #getServer() <em>Server</em>}' reference.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getServer()
	 * @generated
	 * @ordered
	 */
	protected Server server;

	/**
	 * The cached value of the '{@link #getHypervisor() <em>Hypervisor</em>}' reference.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getHypervisor()
	 * @generated
	 * @ordered
	 */
	protected Hypervisor hypervisor;

	/**
	 * The cached value of the '{@link #getVmType() <em>Vm Type</em>}' reference.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getVmType()
	 * @generated
	 * @ordered
	 */
	protected VirtualMachineType vmType;

	/**
	 * The default value of the '{@link #getCertificatePassword() <em>Certificate Password</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getCertificatePassword()
	 * @generated
	 * @ordered
	 */
	protected static final String CERTIFICATE_PASSWORD_EDEFAULT = null;

	/**
	 * The cached value of the '{@link #getCertificatePassword() <em>Certificate Password</em>}' attribute.
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @see #getCertificatePassword()
	 * @generated
	 * @ordered
	 */
	protected String certificatePassword = CERTIFICATE_PASSWORD_EDEFAULT;

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	protected DcaeBasicServerImpl() {
		super();
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	@Override
	protected EClass eStaticClass() {
		return ServerPackage.Literals.DCAE_BASIC_SERVER;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public OperationalState getOperationalState() {
		return operationalState;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public void setOperationalState(OperationalState newOperationalState) {
		OperationalState oldOperationalState = operationalState;
		operationalState = newOperationalState == null ? OPERATIONAL_STATE_EDEFAULT : newOperationalState;
		if (eNotificationRequired())
			eNotify(new ENotificationImpl(this, Notification.SET, ServerPackage.DCAE_BASIC_SERVER__OPERATIONAL_STATE, oldOperationalState, operationalState));
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public LogMessageContainerConfiguration getLogMessageConfiguration() {
		return logMessageConfiguration;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public NotificationChain basicSetLogMessageConfiguration(LogMessageContainerConfiguration newLogMessageConfiguration, NotificationChain msgs) {
		LogMessageContainerConfiguration oldLogMessageConfiguration = logMessageConfiguration;
		logMessageConfiguration = newLogMessageConfiguration;
		if (eNotificationRequired()) {
			ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, ServerPackage.DCAE_BASIC_SERVER__LOG_MESSAGE_CONFIGURATION, oldLogMessageConfiguration, newLogMessageConfiguration);
			if (msgs == null) msgs = notification; else msgs.add(notification);
		}
		return msgs;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public void setLogMessageConfiguration(LogMessageContainerConfiguration newLogMessageConfiguration) {
		if (newLogMessageConfiguration != logMessageConfiguration) {
			NotificationChain msgs = null;
			if (logMessageConfiguration != null)
				msgs = ((InternalEObject)logMessageConfiguration).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - ServerPackage.DCAE_BASIC_SERVER__LOG_MESSAGE_CONFIGURATION, null, msgs);
			if (newLogMessageConfiguration != null)
				msgs = ((InternalEObject)newLogMessageConfiguration).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - ServerPackage.DCAE_BASIC_SERVER__LOG_MESSAGE_CONFIGURATION, null, msgs);
			msgs = basicSetLogMessageConfiguration(newLogMessageConfiguration, msgs);
			if (msgs != null) msgs.dispatch();
		}
		else if (eNotificationRequired())
			eNotify(new ENotificationImpl(this, Notification.SET, ServerPackage.DCAE_BASIC_SERVER__LOG_MESSAGE_CONFIGURATION, newLogMessageConfiguration, newLogMessageConfiguration));
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public EList<LogMessageCategory> getLogMessageCategories() {
		if (logMessageCategories == null) {
			logMessageCategories = new EObjectContainmentEList<LogMessageCategory>(LogMessageCategory.class, this, ServerPackage.DCAE_BASIC_SERVER__LOG_MESSAGE_CATEGORIES);
		}
		return logMessageCategories;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public EList<LogMessageStats> getLogMessageStats() {
		if (logMessageStats == null) {
			logMessageStats = new EObjectContainmentEList<LogMessageStats>(LogMessageStats.class, this, ServerPackage.DCAE_BASIC_SERVER__LOG_MESSAGE_STATS);
		}
		return logMessageStats;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public String getPrivateIp() {
		return privateIp;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public void setPrivateIp(String newPrivateIp) {
		String oldPrivateIp = privateIp;
		privateIp = newPrivateIp;
		if (eNotificationRequired())
			eNotify(new ENotificationImpl(this, Notification.SET, ServerPackage.DCAE_BASIC_SERVER__PRIVATE_IP, oldPrivateIp, privateIp));
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public String getPublicIp() {
		return publicIp;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public void setPublicIp(String newPublicIp) {
		String oldPublicIp = publicIp;
		publicIp = newPublicIp;
		if (eNotificationRequired())
			eNotify(new ENotificationImpl(this, Notification.SET, ServerPackage.DCAE_BASIC_SERVER__PUBLIC_IP, oldPublicIp, publicIp));
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public CollectdServer getCollectd() {
		return collectd;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public NotificationChain basicSetCollectd(CollectdServer newCollectd, NotificationChain msgs) {
		CollectdServer oldCollectd = collectd;
		collectd = newCollectd;
		if (eNotificationRequired()) {
			ENotificationImpl notification = new ENotificationImpl(this, Notification.SET, ServerPackage.DCAE_BASIC_SERVER__COLLECTD, oldCollectd, newCollectd);
			if (msgs == null) msgs = notification; else msgs.add(notification);
		}
		return msgs;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public void setCollectd(CollectdServer newCollectd) {
		if (newCollectd != collectd) {
			NotificationChain msgs = null;
			if (collectd != null)
				msgs = ((InternalEObject)collectd).eInverseRemove(this, EOPPOSITE_FEATURE_BASE - ServerPackage.DCAE_BASIC_SERVER__COLLECTD, null, msgs);
			if (newCollectd != null)
				msgs = ((InternalEObject)newCollectd).eInverseAdd(this, EOPPOSITE_FEATURE_BASE - ServerPackage.DCAE_BASIC_SERVER__COLLECTD, null, msgs);
			msgs = basicSetCollectd(newCollectd, msgs);
			if (msgs != null) msgs.dispatch();
		}
		else if (eNotificationRequired())
			eNotify(new ENotificationImpl(this, Notification.SET, ServerPackage.DCAE_BASIC_SERVER__COLLECTD, newCollectd, newCollectd));
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public EList<Module> getModules() {
		if (modules == null) {
			modules = new EObjectContainmentEList<Module>(Module.class, this, ServerPackage.DCAE_BASIC_SERVER__MODULES);
		}
		return modules;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public EList<DcaeBasicServerNetwork> getNetworks() {
		if (networks == null) {
			networks = new EObjectContainmentEList<DcaeBasicServerNetwork>(DcaeBasicServerNetwork.class, this, ServerPackage.DCAE_BASIC_SERVER__NETWORKS);
		}
		return networks;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public DateMetricAttribute getLastUpdate() {
		return lastUpdate;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public void setLastUpdate(DateMetricAttribute newLastUpdate) {
		DateMetricAttribute oldLastUpdate = lastUpdate;
		lastUpdate = newLastUpdate;
		if (eNotificationRequired())
			eNotify(new ENotificationImpl(this, Notification.SET, ServerPackage.DCAE_BASIC_SERVER__LAST_UPDATE, oldLastUpdate, lastUpdate));
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public boolean isUsingMonitoringAgent() {
		return usingMonitoringAgent;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public void setUsingMonitoringAgent(boolean newUsingMonitoringAgent) {
		boolean oldUsingMonitoringAgent = usingMonitoringAgent;
		usingMonitoringAgent = newUsingMonitoringAgent;
		if (eNotificationRequired())
			eNotify(new ENotificationImpl(this, Notification.SET, ServerPackage.DCAE_BASIC_SERVER__USING_MONITORING_AGENT, oldUsingMonitoringAgent, usingMonitoringAgent));
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public Server getServer() {
		if (server != null && server.eIsProxy()) {
			InternalEObject oldServer = (InternalEObject)server;
			server = (Server)eResolveProxy(oldServer);
			if (server != oldServer) {
				if (eNotificationRequired())
					eNotify(new ENotificationImpl(this, Notification.RESOLVE, ServerPackage.DCAE_BASIC_SERVER__SERVER, oldServer, server));
			}
		}
		return server;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public Server basicGetServer() {
		return server;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public void setServer(Server newServer) {
		Server oldServer = server;
		server = newServer;
		if (eNotificationRequired())
			eNotify(new ENotificationImpl(this, Notification.SET, ServerPackage.DCAE_BASIC_SERVER__SERVER, oldServer, server));
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public Hypervisor getHypervisor() {
		if (hypervisor != null && hypervisor.eIsProxy()) {
			InternalEObject oldHypervisor = (InternalEObject)hypervisor;
			hypervisor = (Hypervisor)eResolveProxy(oldHypervisor);
			if (hypervisor != oldHypervisor) {
				if (eNotificationRequired())
					eNotify(new ENotificationImpl(this, Notification.RESOLVE, ServerPackage.DCAE_BASIC_SERVER__HYPERVISOR, oldHypervisor, hypervisor));
			}
		}
		return hypervisor;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public Hypervisor basicGetHypervisor() {
		return hypervisor;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public void setHypervisor(Hypervisor newHypervisor) {
		Hypervisor oldHypervisor = hypervisor;
		hypervisor = newHypervisor;
		if (eNotificationRequired())
			eNotify(new ENotificationImpl(this, Notification.SET, ServerPackage.DCAE_BASIC_SERVER__HYPERVISOR, oldHypervisor, hypervisor));
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public VirtualMachineType getVmType() {
		if (vmType != null && vmType.eIsProxy()) {
			InternalEObject oldVmType = (InternalEObject)vmType;
			vmType = (VirtualMachineType)eResolveProxy(oldVmType);
			if (vmType != oldVmType) {
				if (eNotificationRequired())
					eNotify(new ENotificationImpl(this, Notification.RESOLVE, ServerPackage.DCAE_BASIC_SERVER__VM_TYPE, oldVmType, vmType));
			}
		}
		return vmType;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public VirtualMachineType basicGetVmType() {
		return vmType;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public void setVmType(VirtualMachineType newVmType) {
		VirtualMachineType oldVmType = vmType;
		vmType = newVmType;
		if (eNotificationRequired())
			eNotify(new ENotificationImpl(this, Notification.SET, ServerPackage.DCAE_BASIC_SERVER__VM_TYPE, oldVmType, vmType));
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public String getCertificatePassword() {
		return certificatePassword;
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	public void setCertificatePassword(String newCertificatePassword) {
		String oldCertificatePassword = certificatePassword;
		certificatePassword = newCertificatePassword;
		if (eNotificationRequired())
			eNotify(new ENotificationImpl(this, Notification.SET, ServerPackage.DCAE_BASIC_SERVER__CERTIFICATE_PASSWORD, oldCertificatePassword, certificatePassword));
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	@Override
	public NotificationChain eInverseRemove(InternalEObject otherEnd, int featureID, NotificationChain msgs) {
		switch (featureID) {
			case ServerPackage.DCAE_BASIC_SERVER__LOG_MESSAGE_CONFIGURATION:
				return basicSetLogMessageConfiguration(null, msgs);
			case ServerPackage.DCAE_BASIC_SERVER__LOG_MESSAGE_CATEGORIES:
				return ((InternalEList<?>)getLogMessageCategories()).basicRemove(otherEnd, msgs);
			case ServerPackage.DCAE_BASIC_SERVER__LOG_MESSAGE_STATS:
				return ((InternalEList<?>)getLogMessageStats()).basicRemove(otherEnd, msgs);
			case ServerPackage.DCAE_BASIC_SERVER__COLLECTD:
				return basicSetCollectd(null, msgs);
			case ServerPackage.DCAE_BASIC_SERVER__MODULES:
				return ((InternalEList<?>)getModules()).basicRemove(otherEnd, msgs);
			case ServerPackage.DCAE_BASIC_SERVER__NETWORKS:
				return ((InternalEList<?>)getNetworks()).basicRemove(otherEnd, msgs);
		}
		return super.eInverseRemove(otherEnd, featureID, msgs);
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	@Override
	public Object eGet(int featureID, boolean resolve, boolean coreType) {
		switch (featureID) {
			case ServerPackage.DCAE_BASIC_SERVER__OPERATIONAL_STATE:
				return getOperationalState();
			case ServerPackage.DCAE_BASIC_SERVER__LOG_MESSAGE_CONFIGURATION:
				return getLogMessageConfiguration();
			case ServerPackage.DCAE_BASIC_SERVER__LOG_MESSAGE_CATEGORIES:
				return getLogMessageCategories();
			case ServerPackage.DCAE_BASIC_SERVER__LOG_MESSAGE_STATS:
				return getLogMessageStats();
			case ServerPackage.DCAE_BASIC_SERVER__PRIVATE_IP:
				return getPrivateIp();
			case ServerPackage.DCAE_BASIC_SERVER__PUBLIC_IP:
				return getPublicIp();
			case ServerPackage.DCAE_BASIC_SERVER__COLLECTD:
				return getCollectd();
			case ServerPackage.DCAE_BASIC_SERVER__MODULES:
				return getModules();
			case ServerPackage.DCAE_BASIC_SERVER__NETWORKS:
				return getNetworks();
			case ServerPackage.DCAE_BASIC_SERVER__LAST_UPDATE:
				return getLastUpdate();
			case ServerPackage.DCAE_BASIC_SERVER__USING_MONITORING_AGENT:
				return isUsingMonitoringAgent();
			case ServerPackage.DCAE_BASIC_SERVER__SERVER:
				if (resolve) return getServer();
				return basicGetServer();
			case ServerPackage.DCAE_BASIC_SERVER__HYPERVISOR:
				if (resolve) return getHypervisor();
				return basicGetHypervisor();
			case ServerPackage.DCAE_BASIC_SERVER__VM_TYPE:
				if (resolve) return getVmType();
				return basicGetVmType();
			case ServerPackage.DCAE_BASIC_SERVER__CERTIFICATE_PASSWORD:
				return getCertificatePassword();
		}
		return super.eGet(featureID, resolve, coreType);
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	@SuppressWarnings("unchecked")
	@Override
	public void eSet(int featureID, Object newValue) {
		switch (featureID) {
			case ServerPackage.DCAE_BASIC_SERVER__OPERATIONAL_STATE:
				setOperationalState((OperationalState)newValue);
				return;
			case ServerPackage.DCAE_BASIC_SERVER__LOG_MESSAGE_CONFIGURATION:
				setLogMessageConfiguration((LogMessageContainerConfiguration)newValue);
				return;
			case ServerPackage.DCAE_BASIC_SERVER__LOG_MESSAGE_CATEGORIES:
				getLogMessageCategories().clear();
				getLogMessageCategories().addAll((Collection<? extends LogMessageCategory>)newValue);
				return;
			case ServerPackage.DCAE_BASIC_SERVER__LOG_MESSAGE_STATS:
				getLogMessageStats().clear();
				getLogMessageStats().addAll((Collection<? extends LogMessageStats>)newValue);
				return;
			case ServerPackage.DCAE_BASIC_SERVER__PRIVATE_IP:
				setPrivateIp((String)newValue);
				return;
			case ServerPackage.DCAE_BASIC_SERVER__PUBLIC_IP:
				setPublicIp((String)newValue);
				return;
			case ServerPackage.DCAE_BASIC_SERVER__COLLECTD:
				setCollectd((CollectdServer)newValue);
				return;
			case ServerPackage.DCAE_BASIC_SERVER__MODULES:
				getModules().clear();
				getModules().addAll((Collection<? extends Module>)newValue);
				return;
			case ServerPackage.DCAE_BASIC_SERVER__NETWORKS:
				getNetworks().clear();
				getNetworks().addAll((Collection<? extends DcaeBasicServerNetwork>)newValue);
				return;
			case ServerPackage.DCAE_BASIC_SERVER__LAST_UPDATE:
				setLastUpdate((DateMetricAttribute)newValue);
				return;
			case ServerPackage.DCAE_BASIC_SERVER__USING_MONITORING_AGENT:
				setUsingMonitoringAgent((Boolean)newValue);
				return;
			case ServerPackage.DCAE_BASIC_SERVER__SERVER:
				setServer((Server)newValue);
				return;
			case ServerPackage.DCAE_BASIC_SERVER__HYPERVISOR:
				setHypervisor((Hypervisor)newValue);
				return;
			case ServerPackage.DCAE_BASIC_SERVER__VM_TYPE:
				setVmType((VirtualMachineType)newValue);
				return;
			case ServerPackage.DCAE_BASIC_SERVER__CERTIFICATE_PASSWORD:
				setCertificatePassword((String)newValue);
				return;
		}
		super.eSet(featureID, newValue);
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	@Override
	public void eUnset(int featureID) {
		switch (featureID) {
			case ServerPackage.DCAE_BASIC_SERVER__OPERATIONAL_STATE:
				setOperationalState(OPERATIONAL_STATE_EDEFAULT);
				return;
			case ServerPackage.DCAE_BASIC_SERVER__LOG_MESSAGE_CONFIGURATION:
				setLogMessageConfiguration((LogMessageContainerConfiguration)null);
				return;
			case ServerPackage.DCAE_BASIC_SERVER__LOG_MESSAGE_CATEGORIES:
				getLogMessageCategories().clear();
				return;
			case ServerPackage.DCAE_BASIC_SERVER__LOG_MESSAGE_STATS:
				getLogMessageStats().clear();
				return;
			case ServerPackage.DCAE_BASIC_SERVER__PRIVATE_IP:
				setPrivateIp(PRIVATE_IP_EDEFAULT);
				return;
			case ServerPackage.DCAE_BASIC_SERVER__PUBLIC_IP:
				setPublicIp(PUBLIC_IP_EDEFAULT);
				return;
			case ServerPackage.DCAE_BASIC_SERVER__COLLECTD:
				setCollectd((CollectdServer)null);
				return;
			case ServerPackage.DCAE_BASIC_SERVER__MODULES:
				getModules().clear();
				return;
			case ServerPackage.DCAE_BASIC_SERVER__NETWORKS:
				getNetworks().clear();
				return;
			case ServerPackage.DCAE_BASIC_SERVER__LAST_UPDATE:
				setLastUpdate(LAST_UPDATE_EDEFAULT);
				return;
			case ServerPackage.DCAE_BASIC_SERVER__USING_MONITORING_AGENT:
				setUsingMonitoringAgent(USING_MONITORING_AGENT_EDEFAULT);
				return;
			case ServerPackage.DCAE_BASIC_SERVER__SERVER:
				setServer((Server)null);
				return;
			case ServerPackage.DCAE_BASIC_SERVER__HYPERVISOR:
				setHypervisor((Hypervisor)null);
				return;
			case ServerPackage.DCAE_BASIC_SERVER__VM_TYPE:
				setVmType((VirtualMachineType)null);
				return;
			case ServerPackage.DCAE_BASIC_SERVER__CERTIFICATE_PASSWORD:
				setCertificatePassword(CERTIFICATE_PASSWORD_EDEFAULT);
				return;
		}
		super.eUnset(featureID);
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	@Override
	public boolean eIsSet(int featureID) {
		switch (featureID) {
			case ServerPackage.DCAE_BASIC_SERVER__OPERATIONAL_STATE:
				return operationalState != OPERATIONAL_STATE_EDEFAULT;
			case ServerPackage.DCAE_BASIC_SERVER__LOG_MESSAGE_CONFIGURATION:
				return logMessageConfiguration != null;
			case ServerPackage.DCAE_BASIC_SERVER__LOG_MESSAGE_CATEGORIES:
				return logMessageCategories != null && !logMessageCategories.isEmpty();
			case ServerPackage.DCAE_BASIC_SERVER__LOG_MESSAGE_STATS:
				return logMessageStats != null && !logMessageStats.isEmpty();
			case ServerPackage.DCAE_BASIC_SERVER__PRIVATE_IP:
				return PRIVATE_IP_EDEFAULT == null ? privateIp != null : !PRIVATE_IP_EDEFAULT.equals(privateIp);
			case ServerPackage.DCAE_BASIC_SERVER__PUBLIC_IP:
				return PUBLIC_IP_EDEFAULT == null ? publicIp != null : !PUBLIC_IP_EDEFAULT.equals(publicIp);
			case ServerPackage.DCAE_BASIC_SERVER__COLLECTD:
				return collectd != null;
			case ServerPackage.DCAE_BASIC_SERVER__MODULES:
				return modules != null && !modules.isEmpty();
			case ServerPackage.DCAE_BASIC_SERVER__NETWORKS:
				return networks != null && !networks.isEmpty();
			case ServerPackage.DCAE_BASIC_SERVER__LAST_UPDATE:
				return LAST_UPDATE_EDEFAULT == null ? lastUpdate != null : !LAST_UPDATE_EDEFAULT.equals(lastUpdate);
			case ServerPackage.DCAE_BASIC_SERVER__USING_MONITORING_AGENT:
				return usingMonitoringAgent != USING_MONITORING_AGENT_EDEFAULT;
			case ServerPackage.DCAE_BASIC_SERVER__SERVER:
				return server != null;
			case ServerPackage.DCAE_BASIC_SERVER__HYPERVISOR:
				return hypervisor != null;
			case ServerPackage.DCAE_BASIC_SERVER__VM_TYPE:
				return vmType != null;
			case ServerPackage.DCAE_BASIC_SERVER__CERTIFICATE_PASSWORD:
				return CERTIFICATE_PASSWORD_EDEFAULT == null ? certificatePassword != null : !CERTIFICATE_PASSWORD_EDEFAULT.equals(certificatePassword);
		}
		return super.eIsSet(featureID);
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	@Override
	public int eBaseStructuralFeatureID(int derivedFeatureID, Class<?> baseClass) {
		if (baseClass == HasOperationalState.class) {
			switch (derivedFeatureID) {
				case ServerPackage.DCAE_BASIC_SERVER__OPERATIONAL_STATE: return CorePackage.HAS_OPERATIONAL_STATE__OPERATIONAL_STATE;
				default: return -1;
			}
		}
		if (baseClass == LogMessageContainer.class) {
			switch (derivedFeatureID) {
				case ServerPackage.DCAE_BASIC_SERVER__LOG_MESSAGE_CONFIGURATION: return LogsPackage.LOG_MESSAGE_CONTAINER__LOG_MESSAGE_CONFIGURATION;
				case ServerPackage.DCAE_BASIC_SERVER__LOG_MESSAGE_CATEGORIES: return LogsPackage.LOG_MESSAGE_CONTAINER__LOG_MESSAGE_CATEGORIES;
				case ServerPackage.DCAE_BASIC_SERVER__LOG_MESSAGE_STATS: return LogsPackage.LOG_MESSAGE_CONTAINER__LOG_MESSAGE_STATS;
				default: return -1;
			}
		}
		return super.eBaseStructuralFeatureID(derivedFeatureID, baseClass);
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	@Override
	public int eDerivedStructuralFeatureID(int baseFeatureID, Class<?> baseClass) {
		if (baseClass == HasOperationalState.class) {
			switch (baseFeatureID) {
				case CorePackage.HAS_OPERATIONAL_STATE__OPERATIONAL_STATE: return ServerPackage.DCAE_BASIC_SERVER__OPERATIONAL_STATE;
				default: return -1;
			}
		}
		if (baseClass == LogMessageContainer.class) {
			switch (baseFeatureID) {
				case LogsPackage.LOG_MESSAGE_CONTAINER__LOG_MESSAGE_CONFIGURATION: return ServerPackage.DCAE_BASIC_SERVER__LOG_MESSAGE_CONFIGURATION;
				case LogsPackage.LOG_MESSAGE_CONTAINER__LOG_MESSAGE_CATEGORIES: return ServerPackage.DCAE_BASIC_SERVER__LOG_MESSAGE_CATEGORIES;
				case LogsPackage.LOG_MESSAGE_CONTAINER__LOG_MESSAGE_STATS: return ServerPackage.DCAE_BASIC_SERVER__LOG_MESSAGE_STATS;
				default: return -1;
			}
		}
		return super.eDerivedStructuralFeatureID(baseFeatureID, baseClass);
	}

	/**
	 * <!-- begin-user-doc -->
	 * <!-- end-user-doc -->
	 * @generated
	 */
	@Override
	public String toString() {
		if (eIsProxy()) return super.toString();

		StringBuffer result = new StringBuffer(super.toString());
		result.append(" (operationalState: ");
		result.append(operationalState);
		result.append(", privateIp: ");
		result.append(privateIp);
		result.append(", publicIp: ");
		result.append(publicIp);
		result.append(", lastUpdate: ");
		result.append(lastUpdate);
		result.append(", usingMonitoringAgent: ");
		result.append(usingMonitoringAgent);
		result.append(", certificatePassword: ");
		result.append(certificatePassword);
		result.append(')');
		return result.toString();
	}

} //DcaeBasicServerImpl