Initial code drop - bgp/pcep configuration.
[bgpcep.git] / bgp / rib-impl / src / main / java / org / opendaylight / protocol / bgp / rib / impl / RIBImpl.java
index b3e754d9ad1458de73b40d67998fcf96389d33fe..1c5ea526ca19c11fc678de2af8f5cccb0f921017 100644 (file)
@@ -31,12 +31,12 @@ import com.google.common.base.Objects.ToStringHelper;
 import com.google.common.base.Preconditions;
 
 @ThreadSafe
-final class RIBImpl {
+public class RIBImpl {
        private static final Logger logger = LoggerFactory.getLogger(RIBImpl.class);
        private final DataProviderService dps;
        private final RIBTables tables;
 
-       RIBImpl(final DataProviderService dps) {
+       public RIBImpl(final DataProviderService dps) {
                this.dps = Preconditions.checkNotNull(dps);
                this.tables = new RIBTables(BGPObjectComparator.INSTANCE, AdjRIBsInFactoryRegistryImpl.INSTANCE);
        }