aboutsummaryrefslogtreecommitdiffstats
path: root/vid-app-common/src/main/java/org/onap/vid/model/aaiTree/NCF.kt
blob: 6d407da4c45f83581932136d466b784bff6e1cdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package org.onap.vid.model.aaiTree

import org.apache.commons.lang.StringUtils

class NCF(node: AAITreeNode) : InstanceGroup(node) {
    val numberOfNetworks: Int = if (node.relationshipList != null && node.relationshipList.relationship != null) {
        node.relationshipList.relationship
                .filter { StringUtils.equalsIgnoreCase(it.relatedTo, "L3-NETWORK") }
                .count()
    } else 0
}