Bump upstream dependencies to Ca
[transportpce.git] / olm / src / main / java / org / opendaylight / transportpce / olm / rpc / impl / ServicePowerResetImpl.java
1 /*
2  * Copyright © 2024 Orange, 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 package org.opendaylight.transportpce.olm.rpc.impl;
9
10 import static java.util.Objects.requireNonNull;
11
12 import com.google.common.util.concurrent.ListenableFuture;
13 import org.opendaylight.transportpce.olm.service.OlmPowerService;
14 import org.opendaylight.yang.gen.v1.http.org.opendaylight.transportpce.olm.rev210618.ServicePowerReset;
15 import org.opendaylight.yang.gen.v1.http.org.opendaylight.transportpce.olm.rev210618.ServicePowerResetInput;
16 import org.opendaylight.yang.gen.v1.http.org.opendaylight.transportpce.olm.rev210618.ServicePowerResetOutput;
17 import org.opendaylight.yangtools.yang.common.RpcResult;
18 import org.opendaylight.yangtools.yang.common.RpcResultBuilder;
19
20
21 public class ServicePowerResetImpl implements ServicePowerReset {
22     private final OlmPowerService olmPowerService;
23
24     public ServicePowerResetImpl(final OlmPowerService olmPowerService) {
25         this.olmPowerService = requireNonNull(olmPowerService);
26     }
27
28     @Override
29     public ListenableFuture<RpcResult<ServicePowerResetOutput>> invoke(ServicePowerResetInput input) {
30         return RpcResultBuilder.success(this.olmPowerService.servicePowerReset(input)).buildFuture();
31     }
32
33 }