Skip to content

Commit 27c0004

Browse files
committed
Modernize RPC implementation registration
Use a plain varargs array instead of ClassToInstanceMap. Change-Id: I1cb0c14ab01b86db6022a1eb3b109aedda1a9aca Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
1 parent 40265bc commit 27c0004

File tree

2 files changed

+29
-37
lines changed

2 files changed

+29
-37
lines changed

mappingservice/implementation/src/main/java/org/opendaylight/lispflowmapping/implementation/MappingService.java

+22-27
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
import static java.util.Objects.requireNonNull;
1111

1212
import com.google.common.annotations.VisibleForTesting;
13-
import com.google.common.collect.ImmutableClassToInstanceMap;
1413
import com.google.common.util.concurrent.ListenableFuture;
1514
import java.util.ArrayList;
1615
import java.util.List;
@@ -117,7 +116,6 @@
117116
import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.mappingservice.rev150906.UpdateMappingsInput;
118117
import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.mappingservice.rev150906.UpdateMappingsOutput;
119118
import org.opendaylight.yangtools.concepts.Registration;
120-
import org.opendaylight.yangtools.yang.binding.Rpc;
121119
import org.opendaylight.yangtools.yang.common.ErrorTag;
122120
import org.opendaylight.yangtools.yang.common.ErrorType;
123121
import org.opendaylight.yangtools.yang.common.RpcResult;
@@ -185,31 +183,28 @@ public void initialize() {
185183
dsbe = new DataStoreBackEnd(dataBroker);
186184

187185
rpcRegistration = rpcProviderService.registerRpcImplementations(
188-
ImmutableClassToInstanceMap.<Rpc<?, ?>>builder()
189-
.put(AddKey.class, this::addKey)
190-
.put(GetKey.class, this::getKey)
191-
.put(UpdateKey.class, this::updateKey)
192-
.put(RemoveKey.class, this::removeKey)
193-
.put(AddMapping.class, this::addMapping)
194-
.put(GetMapping.class, this::getMapping)
195-
.put(GetMappingWithXtrId.class, this::getMappingWithXtrId)
196-
.put(UpdateMapping.class, this::updateMapping)
197-
.put(RemoveMapping.class, this::removeMapping)
198-
.put(AddKeys.class, this::addKeys)
199-
.put(GetKeys.class, this::getKeys)
200-
.put(UpdateKeys.class, this::updateKeys)
201-
.put(RemoveKeys.class, this::removeKeys)
202-
.put(AddMappings.class, this::addMappings)
203-
.put(GetMappings.class, this::getMappings)
204-
.put(UpdateMappings.class, this::updateMappings)
205-
.put(RemoveMappings.class, this::removeMappings)
206-
.put(GetAllKeys.class, this::getAllKeys)
207-
.put(GetAllMappings.class, this::getAllMappings)
208-
.put(RemoveAllKeys.class, this::removeAllKeys)
209-
.put(RemoveAllMappings.class, this::removeAllMappings)
210-
.put(RemoveAllOperationalContent.class, this::removeAllOperationalContent)
211-
.build()
212-
);
186+
(AddKey) this::addKey,
187+
(GetKey) this::getKey,
188+
(UpdateKey) this::updateKey,
189+
(RemoveKey) this::removeKey,
190+
(AddMapping) this::addMapping,
191+
(GetMapping) this::getMapping,
192+
(GetMappingWithXtrId) this::getMappingWithXtrId,
193+
(UpdateMapping) this::updateMapping,
194+
(RemoveMapping) this::removeMapping,
195+
(AddKeys) this::addKeys,
196+
(GetKeys) this::getKeys,
197+
(UpdateKeys) this::updateKeys,
198+
(RemoveKeys) this::removeKeys,
199+
(AddMappings) this::addMappings,
200+
(GetMappings) this::getMappings,
201+
(UpdateMappings) this::updateMappings,
202+
(RemoveMappings) this::removeMappings,
203+
(GetAllKeys) this::getAllKeys,
204+
(GetAllMappings) this::getAllMappings,
205+
(RemoveAllKeys) this::removeAllKeys,
206+
(RemoveAllMappings) this::removeAllMappings,
207+
(RemoveAllOperationalContent) this::removeAllOperationalContent);
213208

214209
mappingSystem = new MappingSystem(dao, iterateMask, notificationPublishService, mappingMergePolicy);
215210
mappingSystem.setDataStoreBackEnd(dsbe);

mappingservice/southbound/src/main/java/org/opendaylight/lispflowmapping/southbound/LispSouthboundRPC.java

+7-10
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
package org.opendaylight.lispflowmapping.southbound;
99

1010
import com.google.common.annotations.VisibleForTesting;
11-
import com.google.common.collect.ImmutableClassToInstanceMap;
1211
import com.google.common.util.concurrent.Futures;
1312
import com.google.common.util.concurrent.ListenableFuture;
1413
import java.nio.ByteBuffer;
@@ -52,7 +51,6 @@
5251
import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.lisp.sb.rev150904.get.stats.output.ControlMessageStatsBuilder;
5352
import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.lisp.sb.rev150904.get.stats.output.MapRegisterCacheStatsBuilder;
5453
import org.opendaylight.yangtools.concepts.Registration;
55-
import org.opendaylight.yangtools.yang.binding.Rpc;
5654
import org.opendaylight.yangtools.yang.common.ErrorTag;
5755
import org.opendaylight.yangtools.yang.common.ErrorType;
5856
import org.opendaylight.yangtools.yang.common.RpcResult;
@@ -84,14 +82,13 @@ public class LispSouthboundRPC {
8482
public LispSouthboundRPC(final @Reference LispSouthboundPlugin lispSbPlugin,
8583
final @Reference RpcProviderService rpcProviderService) {
8684
this.lispSbPlugin = lispSbPlugin;
87-
rpcRegistration = rpcProviderService.registerRpcImplementations(ImmutableClassToInstanceMap.<Rpc<?, ?>>builder()
88-
.put(SendMapRequest.class, this::sendMapRequest)
89-
.put(SendMapReply.class, this::sendMapReply)
90-
.put(SendMapRegister.class, this::sendMapRegister)
91-
.put(SendMapNotify.class, this::sendMapNotify)
92-
.put(GetStats.class, this::getStats)
93-
.put(ResetStats.class, this::resetStats)
94-
.build());
85+
rpcRegistration = rpcProviderService.registerRpcImplementations(
86+
(SendMapRequest) this::sendMapRequest,
87+
(SendMapReply) this::sendMapReply,
88+
(SendMapRegister) this::sendMapRegister,
89+
(SendMapNotify) this::sendMapNotify,
90+
(GetStats) this::getStats,
91+
(ResetStats) this::resetStats);
9592
}
9693

9794
@Deactivate

0 commit comments

Comments
 (0)