BGPCEP-701: Remove old statistics, keep only openconfig stats
[bgpcep.git] / bgp / rib-impl / src / main / java / org / opendaylight / protocol / bgp / rib / impl / spi / InstanceType.java
1 /*
2  * Copyright (c) 2016 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.protocol.bgp.rib.impl.spi;
10
11 import com.google.common.collect.ImmutableList;
12 import java.util.Collections;
13 import java.util.List;
14 import java.util.stream.Collectors;
15 import org.opendaylight.protocol.bgp.rib.RibReference;
16 import org.opendaylight.protocol.bgp.rib.spi.state.BGPPeerStateConsumer;
17 import org.opendaylight.protocol.bgp.rib.spi.state.BGPRIBStateConsumer;
18
19 public enum InstanceType {
20
21     RIB("ribImpl", ImmutableList.of(RIB.class, RibReference.class, BGPRIBStateConsumer.class)),
22
23     PEER("bgpPeer", ImmutableList.of(BGPPeerStateConsumer.class)),
24
25     APP_PEER("appPeer", Collections.singletonList(BGPPeerStateConsumer.class));
26
27     private final String beanName;
28     private final List<String> services;
29
30     InstanceType(final String beanName, final List<Class<?>> services) {
31         this.beanName = beanName;
32         this.services = ImmutableList.copyOf(services.stream().map(Class::getName).collect(Collectors.toList()));
33     }
34
35     public String getBeanName() {
36         return this.beanName;
37     }
38
39     public String[] getServices() {
40         return this.services.toArray(new String[0]);
41     }
42 }