|
10 | 10 | import static java.util.Objects.requireNonNull;
|
11 | 11 |
|
12 | 12 | import com.google.common.annotations.VisibleForTesting;
|
13 |
| -import com.google.common.collect.ImmutableClassToInstanceMap; |
14 | 13 | import com.google.common.util.concurrent.ListenableFuture;
|
15 | 14 | import java.util.ArrayList;
|
16 | 15 | import java.util.List;
|
|
117 | 116 | import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.mappingservice.rev150906.UpdateMappingsInput;
|
118 | 117 | import org.opendaylight.yang.gen.v1.urn.opendaylight.lfm.mappingservice.rev150906.UpdateMappingsOutput;
|
119 | 118 | import org.opendaylight.yangtools.concepts.Registration;
|
120 |
| -import org.opendaylight.yangtools.yang.binding.Rpc; |
121 | 119 | import org.opendaylight.yangtools.yang.common.ErrorTag;
|
122 | 120 | import org.opendaylight.yangtools.yang.common.ErrorType;
|
123 | 121 | import org.opendaylight.yangtools.yang.common.RpcResult;
|
@@ -185,31 +183,28 @@ public void initialize() {
|
185 | 183 | dsbe = new DataStoreBackEnd(dataBroker);
|
186 | 184 |
|
187 | 185 | 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); |
213 | 208 |
|
214 | 209 | mappingSystem = new MappingSystem(dao, iterateMask, notificationPublishService, mappingMergePolicy);
|
215 | 210 | mappingSystem.setDataStoreBackEnd(dsbe);
|
|
0 commit comments