aboutsummaryrefslogtreecommitdiffstats
path: root/jtosca/src/main/java/org/onap/sdc/toscaparser/api/EntityTemplate.java
blob: 9f8ccbd612448ac7d466f9e6a2801362a12e3490 (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
/*-
 * ============LICENSE_START=======================================================
 * SDC
 * ================================================================================
 * Copyright (C) 2019 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.onap.sdc.toscaparser.api;

import org.onap.sdc.toscaparser.api.common.JToscaValidationIssue;
import org.onap.sdc.toscaparser.api.elements.*;
import org.onap.sdc.toscaparser.api.utils.ThreadLocalsHolder;


import javax.annotation.Nullable;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.Map;

public abstract class EntityTemplate {
    // Base class for TOSCA templates

    protected static final String DERIVED_FROM = "derived_from";
    protected static final String PROPERTIES = "properties";
    protected static final String REQUIREMENTS = "requirements";
    protected static final String INTERFACES = "interfaces";
    protected static final String CAPABILITIES = "capabilities";
    protected static final String TYPE = "type";
    protected static final String DESCRIPTION = "description";
    protected static final String DIRECTIVES = "directives";
    protected static final String ATTRIBUTES = "attributes";
    protected static final String ARTIFACTS = "artifacts";
    protected static final String NODE_FILTER = "node_filter";
    protected static final String COPY = "copy";

    protected static final String SECTIONS[] = {
            DERIVED_FROM, PROPERTIES, REQUIREMENTS, INTERFACES,
            CAPABILITIES, TYPE, DESCRIPTION, DIRECTIVES,
            ATTRIBUTES, ARTIFACTS, NODE_FILTER, COPY};

    private static final String NODE = "node";
    private static final String CAPABILITY = "capability";
    private static final String RELATIONSHIP = "relationship";
    private static final String OCCURRENCES = "occurrences";

    protected static final String REQUIREMENTS_SECTION[] = {
            NODE, CAPABILITY, RELATIONSHIP, OCCURRENCES, NODE_FILTER};

    //# Special key names
    private static final String METADATA = "metadata";
    protected static final String SPECIAL_SECTIONS[] = {METADATA};

    protected String name;
    protected LinkedHashMap<String, Object> entityTpl;
    protected LinkedHashMap<String, Object> customDef;
    protected StatefulEntityType typeDefinition;
    private ArrayList<Property> _properties;
    private ArrayList<InterfacesDef> _interfaces;
    private ArrayList<RequirementAssignment> _requirements;
    private ArrayList<CapabilityAssignment> _capabilities;

    @Nullable
    private NodeTemplate _parentNodeTemplate;

    // dummy constructor for subclasses that don't want super
    public EntityTemplate() {
        return;
    }

    public EntityTemplate(String _name,
                          LinkedHashMap<String, Object> _template,
                          String _entityName,
                          LinkedHashMap<String, Object> _customDef) {
        this(_name, _template, _entityName, _customDef, null);
    }

    @SuppressWarnings("unchecked")
    public EntityTemplate(String _name,
                          LinkedHashMap<String, Object> _template,
                          String _entityName,
                          LinkedHashMap<String, Object> _customDef,
                          NodeTemplate parentNodeTemplate) {
        name = _name;
        entityTpl = _template;
        customDef = _customDef;
        _validateField(entityTpl);
        String type = (String) entityTpl.get("type");
        UnsupportedType.validateType(type);
        if (_entityName.equals("node_type")) {
            if (type != null) {
                typeDefinition = new NodeType(type, customDef);
            } else {
                typeDefinition = null;
            }
        }
        if (_entityName.equals("relationship_type")) {
            Object relationship = _template.get(RELATIONSHIP);
            type = null;
            if (relationship != null && relationship instanceof LinkedHashMap) {
                type = (String) ((LinkedHashMap<String, Object>) relationship).get("type");
            } else if (relationship instanceof String) {
                type = (String) entityTpl.get(RELATIONSHIP);
            } else {
                type = (String) entityTpl.get("type");
            }
            UnsupportedType.validateType(type);
            typeDefinition = new RelationshipType(type, null, customDef);
        }
        if (_entityName.equals("policy_type")) {
            if (type == null) {
                //msg = (_('Policy definition of "%(pname)s" must have'
                //       ' a "type" ''attribute.') % dict(pname=name))
                ThreadLocalsHolder.getCollector().appendValidationIssue(new JToscaValidationIssue("JE140", String.format(
                        "ValidationError: Policy definition of \"%s\" must have a \"type\" attribute", name)));
            }
            typeDefinition = new PolicyType(type, customDef);
        }
        if (_entityName.equals("group_type")) {
            if (type != null) {
                typeDefinition = new GroupType(type, customDef);
            } else {
                typeDefinition = null;
            }
        }
        _properties = null;
        _interfaces = null;
        _requirements = null;
        _capabilities = null;
        _parentNodeTemplate = parentNodeTemplate;
    }

    public NodeTemplate getParentNodeTemplate() {
        return _parentNodeTemplate;
    }

    public String getType() {
        if (typeDefinition != null) {
            String clType = typeDefinition.getClass().getSimpleName();
            if (clType.equals("NodeType")) {
                return (String) ((NodeType) typeDefinition).getType();
            } else if (clType.equals("PolicyType")) {
                return (String) ((PolicyType) typeDefinition).getType();
            } else if (clType.equals("GroupType")) {
                return (String) ((GroupType) typeDefinition).getType();
            } else if (clType.equals("RelationshipType")) {
                return (String) ((RelationshipType) typeDefinition).getType();
            }
        }
        return null;
    }

    public Object getParentType() {
        if (typeDefinition != null) {
            String clType = typeDefinition.getClass().getSimpleName();
            if (clType.equals("NodeType")) {
                return ((NodeType) typeDefinition).getParentType();
            } else if (clType.equals("PolicyType")) {
                return ((PolicyType) typeDefinition).getParentType();
            } else if (clType.equals("GroupType")) {
                return ((GroupType) typeDefinition).getParentType();
            } else if (clType.equals("RelationshipType")) {
                return ((RelationshipType) typeDefinition).getParentType();
            }
        }
        return null;
    }

    @SuppressWarnings("unchecked")
    public RequirementAssignments getRequirements() {
        if (_requirements == null) {
            _requirements = _createRequirements();
        }
        return new RequirementAssignments(_requirements);
    }

    private ArrayList<RequirementAssignment> _createRequirements() {
        ArrayList<RequirementAssignment> reqs = new ArrayList<>();
        ArrayList<Map<String, Object>> requirements = (ArrayList<Map<String, Object>>)
                typeDefinition.getValue(REQUIREMENTS, entityTpl, false);
        if (requirements == null) {
            requirements = new ArrayList<>();
        }
        for (Map<String, Object> req : requirements) {
            for (String reqName : req.keySet()) {
                Object reqItem = req.get(reqName);
                if (reqItem instanceof LinkedHashMap) {
                    Object rel = ((LinkedHashMap<String, Object>) reqItem).get(RELATIONSHIP);
                    String nodeName = ((LinkedHashMap<String, Object>) reqItem).get("node").toString();
                    Object capability = ((LinkedHashMap<String, Object>) reqItem).get(CAPABILITY);
                    String capabilityString = capability != null ? capability.toString() : null;

                    reqs.add(new RequirementAssignment(reqName, nodeName, capabilityString, rel));
                } else if (reqItem instanceof String) { //short notation
                    String nodeName = String.valueOf(reqItem);
                    reqs.add(new RequirementAssignment(reqName, nodeName));
                }
            }
        }
        return reqs;
    }

    public ArrayList<Property> getPropertiesObjects() {
        // Return properties objects for this template
        if (_properties == null) {
            _properties = _createProperties();
        }
        return _properties;
    }

    public LinkedHashMap<String, Property> getProperties() {
        LinkedHashMap<String, Property> props = new LinkedHashMap<>();
        for (Property po : getPropertiesObjects()) {
            props.put(po.getName(), po);
        }
        return props;
    }

    public Object getPropertyValue(String name) {
        LinkedHashMap<String, Property> props = getProperties();
        Property p = props.get(name);
        return p != null ? p.getValue() : null;
    }

    public String getPropertyType(String name) {
        Property property = getProperties().get(name);
        if (property != null) {
            return property.getType();
        }
        return null;
    }

    public ArrayList<InterfacesDef> getInterfaces() {
        if (_interfaces == null) {
            _interfaces = _createInterfaces();
        }
        return _interfaces;
    }

    public ArrayList<CapabilityAssignment> getCapabilitiesObjects() {
        // Return capabilities objects for this template
        if (_capabilities == null) {
            _capabilities = _createCapabilities();
        }
        return _capabilities;

    }

    public CapabilityAssignments getCapabilities() {
        LinkedHashMap<String, CapabilityAssignment> caps = new LinkedHashMap<String, CapabilityAssignment>();
        for (CapabilityAssignment cap : getCapabilitiesObjects()) {
            caps.put(cap.getName(), cap);
        }
        return new CapabilityAssignments(caps);
    }

    public boolean isDerivedFrom(String typeStr) {
        // Returns true if this object is derived from 'type_str'.
        // False otherwise

        if (getType() == null) {
            return false;
        } else if (getType().equals(typeStr)) {
            return true;
        } else if (getParentType() != null) {
            return ((EntityType) getParentType()).isDerivedFrom(typeStr);
        }
        return false;
    }

    @SuppressWarnings("unchecked")
    private ArrayList<CapabilityAssignment> _createCapabilities() {
        ArrayList<CapabilityAssignment> capability = new ArrayList<CapabilityAssignment>();
        LinkedHashMap<String, Object> caps = (LinkedHashMap<String, Object>)
                ((EntityType) typeDefinition).getValue(CAPABILITIES, entityTpl, true);
        if (caps != null) {
            //?!? getCapabilities defined only for NodeType...
            LinkedHashMap<String, CapabilityTypeDef> capabilities = null;
            if (typeDefinition instanceof NodeType) {
                capabilities = ((NodeType) typeDefinition).getCapabilities();
            } else if (typeDefinition instanceof GroupType) {
                capabilities = ((GroupType) typeDefinition).getCapabilities();
            }
            for (Map.Entry<String, Object> me : caps.entrySet()) {
                String name = me.getKey();
                LinkedHashMap<String, Object> props = (LinkedHashMap<String, Object>) me.getValue();
                if (capabilities.get(name) != null) {
                    CapabilityTypeDef c = capabilities.get(name);  // a CapabilityTypeDef
                    LinkedHashMap<String, Object> properties = new LinkedHashMap<String, Object>();
                    // first use the definition default value
                    LinkedHashMap<String, Object> cprops = c.getProperties();
                    if (cprops != null) {
                        for (Map.Entry<String, Object> cpe : cprops.entrySet()) {
                            String propertyName = cpe.getKey();
                            LinkedHashMap<String, Object> propertyDef = (LinkedHashMap<String, Object>) cpe.getValue();
                            Object dob = propertyDef.get("default");
                            if (dob != null) {
                                properties.put(propertyName, dob);

                            }
                        }
                    }
                    // then update (if available) with the node properties
                    LinkedHashMap<String, Object> pp = (LinkedHashMap<String, Object>) props.get(PROPERTIES);
                    if (pp != null) {
                        properties.putAll(pp);
                    }
                    CapabilityAssignment cap = new CapabilityAssignment(name, properties, c, customDef);
                    capability.add(cap);
                }
            }
        }
        return capability;
    }

    protected void _validateProperties(LinkedHashMap<String, Object> template, StatefulEntityType entityType) {
        @SuppressWarnings("unchecked")
        LinkedHashMap<String, Object> properties = (LinkedHashMap<String, Object>) entityType.getValue(PROPERTIES, template, false);
        _commonValidateProperties(entityType, properties);
    }

    protected void _validateCapabilities() {
        //BUG??? getCapabilities only defined in NodeType...
        LinkedHashMap<String, CapabilityTypeDef> typeCapabilities = ((NodeType) typeDefinition).getCapabilities();
        ArrayList<String> allowedCaps = new ArrayList<String>();
        if (typeCapabilities != null) {
            allowedCaps.addAll(typeCapabilities.keySet());
        }
        @SuppressWarnings("unchecked")
        LinkedHashMap<String, Object> capabilities = (LinkedHashMap<String, Object>)
                ((EntityType) typeDefinition).getValue(CAPABILITIES, entityTpl, false);
        if (capabilities != null) {
            _commonValidateField(capabilities, allowedCaps, CAPABILITIES);
            _validateCapabilitiesProperties(capabilities);
        }
    }

    @SuppressWarnings("unchecked")
    private void _validateCapabilitiesProperties(LinkedHashMap<String, Object> capabilities) {
        for (Map.Entry<String, Object> me : capabilities.entrySet()) {
            String cap = me.getKey();
            LinkedHashMap<String, Object> props = (LinkedHashMap<String, Object>) me.getValue();
            CapabilityAssignment capability = getCapability(cap);
            if (capability == null) {
                continue;
            }
            CapabilityTypeDef capabilitydef = capability.getDefinition();
            _commonValidateProperties(capabilitydef, (LinkedHashMap<String, Object>) props.get(PROPERTIES));

            // validating capability properties values
            for (Property prop : getCapability(cap).getPropertiesObjects()) {
                prop.validate();

                if (cap.equals("scalable") && prop.getName().equals("default_instances")) {
                    LinkedHashMap<String, Object> propDict = (LinkedHashMap<String, Object>) props.get(PROPERTIES);
                    int minInstances = (int) propDict.get("min_instances");
                    int maxInstances = (int) propDict.get("max_instances");
                    int defaultInstances = (int) propDict.get("default_instances");
                    if (defaultInstances < minInstances || defaultInstances > maxInstances) {
                        //err_msg = ('PROPERTIES of template "%s": '
                        //           '"default_instances" value is not between '
                        //           '"min_instances" and "max_instances".' %
                        //           self.name)
                        ThreadLocalsHolder.getCollector().appendValidationIssue(new JToscaValidationIssue("JE141", String.format(
                                "ValidationError: \"properties\" of template \"%s\": \"default_instances\" value is not between \"min_instances\" and \"max_instances\"",
                                name)));
                    }
                }
            }
        }
    }

    private void _commonValidateProperties(StatefulEntityType entityType, LinkedHashMap<String, Object> properties) {
        ArrayList<String> allowedProps = new ArrayList<String>();
        ArrayList<String> requiredProps = new ArrayList<String>();
        for (PropertyDef p : entityType.getPropertiesDefObjects()) {
            allowedProps.add(p.getName());
            // If property is 'required' and has no 'default' value then record
            if (p.isRequired() && p.getDefault() == null) {
                requiredProps.add(p.getName());
            }
        }
        // validate all required properties have values
        if (properties != null) {
            ArrayList<String> reqPropsNoValueOrDefault = new ArrayList<String>();
            _commonValidateField(properties, allowedProps, PROPERTIES);
            // make sure it's not missing any property required by a tosca type
            for (String r : requiredProps) {
                if (properties.get(r) == null) {
                    reqPropsNoValueOrDefault.add(r);
                }
            }
            // Required properties found without value or a default value
            if (!reqPropsNoValueOrDefault.isEmpty()) {
                ThreadLocalsHolder.getCollector().appendValidationIssue(new JToscaValidationIssue("JE003", String.format(
                        "MissingRequiredFieldError: properties of template \"%s\" are missing field(s): %s",
                        name, reqPropsNoValueOrDefault.toString())));
            }
        } else {
            // Required properties in schema, but not in template
            if (!requiredProps.isEmpty()) {
                ThreadLocalsHolder.getCollector().appendValidationIssue(new JToscaValidationIssue("JE004", String.format(
                        "MissingRequiredFieldError2: properties of template \"%s\" are missing field(s): %s",
                        name, requiredProps.toString())));
            }
        }
    }

    @SuppressWarnings("unchecked")
    private void _validateField(LinkedHashMap<String, Object> template) {
        if (!(template instanceof LinkedHashMap)) {
            ThreadLocalsHolder.getCollector().appendValidationIssue(new JToscaValidationIssue("JE142", String.format(
                    "MissingRequiredFieldError: Template \"%s\" is missing required field \"%s\"", name, TYPE)));
            return;//???
        }
        boolean bBad = false;
        Object relationship = ((LinkedHashMap<String, Object>) template).get(RELATIONSHIP);
        if (relationship != null) {
            if (!(relationship instanceof String)) {
                bBad = (((LinkedHashMap<String, Object>) relationship).get(TYPE) == null);
            } else if (relationship instanceof String) {
                bBad = (template.get(RELATIONSHIP) == null);
            }
        } else {
            bBad = (template.get(TYPE) == null);
        }
        if (bBad) {
            ThreadLocalsHolder.getCollector().appendValidationIssue(new JToscaValidationIssue("JE143", String.format(
                    "MissingRequiredFieldError: Template \"%s\" is missing required field \"%s\"", name, TYPE)));
        }
    }

    protected void _commonValidateField(LinkedHashMap<String, Object> schema, ArrayList<String> allowedList, String section) {
        for (String sname : schema.keySet()) {
            boolean bFound = false;
            for (String allowed : allowedList) {
                if (sname.equals(allowed)) {
                    bFound = true;
                    break;
                }
            }
            if (!bFound) {
                ThreadLocalsHolder.getCollector().appendValidationIssue(new JToscaValidationIssue("JE144", String.format(
                        "UnknownFieldError: Section \"%s\" of template \"%s\" contains unknown field \"%s\"", section, name, sname)));
            }
        }

    }

    @SuppressWarnings("unchecked")
    private ArrayList<Property> _createProperties() {
        ArrayList<Property> props = new ArrayList<Property>();
        LinkedHashMap<String, Object> properties = (LinkedHashMap<String, Object>)
                ((EntityType) typeDefinition).getValue(PROPERTIES, entityTpl, false);
        if (properties == null) {
            properties = new LinkedHashMap<String, Object>();
        }
        for (Map.Entry<String, Object> me : properties.entrySet()) {
            String pname = me.getKey();
            Object pvalue = me.getValue();
            LinkedHashMap<String, PropertyDef> propsDef = ((StatefulEntityType) typeDefinition).getPropertiesDef();
            if (propsDef != null && propsDef.get(pname) != null) {
                PropertyDef pd = (PropertyDef) propsDef.get(pname);
                Property prop = new Property(pname, pvalue, pd.getSchema(), customDef);
                props.add(prop);
            }
        }
        ArrayList<PropertyDef> pds = ((StatefulEntityType) typeDefinition).getPropertiesDefObjects();
        for (Object pdo : pds) {
            PropertyDef pd = (PropertyDef) pdo;
            if (pd.getDefault() != null && properties.get(pd.getName()) == null) {
                Property prop = new Property(pd.getName(), pd.getDefault(), pd.getSchema(), customDef);
                props.add(prop);
            }
        }
        return props;
    }

    @SuppressWarnings("unchecked")
    private ArrayList<InterfacesDef> _createInterfaces() {
        ArrayList<InterfacesDef> interfaces = new ArrayList<>();
        LinkedHashMap<String, Object> typeInterfaces = new LinkedHashMap<String, Object>();
        if (typeDefinition instanceof RelationshipType) {
            if (entityTpl instanceof LinkedHashMap) {
                typeInterfaces = (LinkedHashMap<String, Object>) entityTpl.get(INTERFACES);
                if (typeInterfaces == null) {
                    for (String relName : entityTpl.keySet()) {
                        Object relValue = entityTpl.get(relName);
                        if (!relName.equals("type")) {
                            Object relDef = relValue;
                            LinkedHashMap<String, Object> rel = null;
                            if (relDef instanceof LinkedHashMap) {
                                Object relob = ((LinkedHashMap<String, Object>) relDef).get(RELATIONSHIP);
                                if (relob instanceof LinkedHashMap) {
                                    rel = (LinkedHashMap<String, Object>) relob;
                                }
                            }
                            if (rel != null) {
                                if (rel.get(INTERFACES) != null) {
                                    typeInterfaces = (LinkedHashMap<String, Object>) rel.get(INTERFACES);
                                    break;
                                }
                            }
                        }
                    }
                }
            }
        } else {
            typeInterfaces = (LinkedHashMap<String, Object>)
                    ((EntityType) typeDefinition).getValue(INTERFACES, entityTpl, false);
        }
        if (typeInterfaces != null) {
            for (Map.Entry<String, Object> me : typeInterfaces.entrySet()) {
                String interfaceType = me.getKey();
                LinkedHashMap<String, Object> value = (LinkedHashMap<String, Object>) me.getValue();
                for (Map.Entry<String, Object> ve : value.entrySet()) {
                    String op = ve.getKey();
                    Object opDef = ve.getValue();
                    InterfacesDef iface = new InterfacesDef((EntityType) typeDefinition,
                            interfaceType,
                            this,
                            op,
                            opDef);
                    interfaces.add(iface);
                }

            }
        }
        return interfaces;
    }

    public CapabilityAssignment getCapability(String name) {
        // Provide named capability
        // :param name: name of capability
        // :return: capability object if found, None otherwise
        return getCapabilities().getCapabilityByName(name);
    }

    // getter
    public String getName() {
        return name;
    }

    public StatefulEntityType getTypeDefinition() {
        return typeDefinition;
    }

    public LinkedHashMap<String, Object> getCustomDef() {
        return customDef;
    }

    @Override
    public String toString() {
        return "EntityTemplate{" +
                "name='" + name + '\'' +
                ", entityTpl=" + entityTpl +
                ", customDef=" + customDef +
                ", typeDefinition=" + typeDefinition +
                ", _properties=" + _properties +
                ", _interfaces=" + _interfaces +
                ", _requirements=" + _requirements +
                ", _capabilities=" + _capabilities +
                '}';
    }
}