Class SuccessfulRpcResult<T>
- java.lang.Object
-
- org.opendaylight.bgpcep.programming.spi.SuccessfulRpcResult<T>
-
- All Implemented Interfaces:
org.opendaylight.yangtools.yang.common.RpcResult<T>
public final class SuccessfulRpcResult<T> extends Object implements org.opendaylight.yangtools.yang.common.RpcResult<T>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static <T> SuccessfulRpcResult<T>
create(T value)
List<org.opendaylight.yangtools.yang.common.RpcError>
getErrors()
T
getResult()
boolean
isSuccessful()
-
-
-
Method Detail
-
create
public static <T> SuccessfulRpcResult<T> create(T value)
-
isSuccessful
public boolean isSuccessful()
- Specified by:
isSuccessful
in interfaceorg.opendaylight.yangtools.yang.common.RpcResult<T>
-
getResult
public T getResult()
- Specified by:
getResult
in interfaceorg.opendaylight.yangtools.yang.common.RpcResult<T>
-
-