Adjust for Binding RPC codegen changes
[controller.git] / opendaylight / md-sal / samples / clustering-test-app / provider / src / main / java / org / opendaylight / controller / clustering / it / provider / PurchaseCarProvider.java
1 /*
2  * Copyright (c) 2014 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.controller.clustering.it.provider;
10
11 import com.google.common.util.concurrent.ListenableFuture;
12 import com.google.common.util.concurrent.SettableFuture;
13 import org.opendaylight.controller.sal.binding.api.NotificationProviderService;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.config.sal.clustering.it.car.purchase.rev140818.BuyCarInput;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.config.sal.clustering.it.car.purchase.rev140818.BuyCarOutput;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.config.sal.clustering.it.car.purchase.rev140818.BuyCarOutputBuilder;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.config.sal.clustering.it.car.purchase.rev140818.CarBoughtBuilder;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.controller.config.sal.clustering.it.car.purchase.rev140818.CarPurchaseService;
19 import org.opendaylight.yangtools.yang.common.RpcResult;
20 import org.opendaylight.yangtools.yang.common.RpcResultBuilder;
21 import org.slf4j.Logger;
22 import org.slf4j.LoggerFactory;
23
24 public class PurchaseCarProvider implements CarPurchaseService, AutoCloseable {
25
26     private static final Logger LOG = LoggerFactory.getLogger(PurchaseCarProvider.class);
27
28     private NotificationProviderService notificationProvider;
29
30
31     public void setNotificationProvider(final NotificationProviderService salService) {
32         this.notificationProvider = salService;
33     }
34
35
36     @Override
37     public ListenableFuture<RpcResult<BuyCarOutput>> buyCar(final BuyCarInput input) {
38         LOG.info("Routed RPC buyCar : generating notification for buying car [{}]", input);
39         final SettableFuture<RpcResult<BuyCarOutput>> futureResult = SettableFuture.create();
40         CarBoughtBuilder carBoughtBuilder = new CarBoughtBuilder();
41         carBoughtBuilder.setCarId(input.getCarId());
42         carBoughtBuilder.setPersonId(input.getPersonId());
43         notificationProvider.publish(carBoughtBuilder.build());
44         futureResult.set(RpcResultBuilder.success(new BuyCarOutputBuilder().build()).build());
45         return futureResult;
46     }
47
48     @Override
49     public void close() {
50     }
51 }