diff options
Diffstat (limited to 'infra/rpc/api')
-rw-r--r-- | infra/rpc/api/asciidoc/Readme.adoc | 3 | ||||
-rw-r--r-- | infra/rpc/api/pom.xml | 39 | ||||
-rw-r--r-- | infra/rpc/api/src/main/java/io/fd/honeycomb/rpc/RpcException.java | 28 | ||||
-rw-r--r-- | infra/rpc/api/src/main/java/io/fd/honeycomb/rpc/RpcRegistry.java | 30 | ||||
-rw-r--r-- | infra/rpc/api/src/main/java/io/fd/honeycomb/rpc/RpcService.java | 32 |
5 files changed, 132 insertions, 0 deletions
diff --git a/infra/rpc/api/asciidoc/Readme.adoc b/infra/rpc/api/asciidoc/Readme.adoc new file mode 100644 index 000000000..3ff98ad85 --- /dev/null +++ b/infra/rpc/api/asciidoc/Readme.adoc @@ -0,0 +1,3 @@ += rpc-api + +Overview of rpc-api
\ No newline at end of file diff --git a/infra/rpc/api/pom.xml b/infra/rpc/api/pom.xml new file mode 100644 index 000000000..17782f308 --- /dev/null +++ b/infra/rpc/api/pom.xml @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + Copyright (c) 2015 Cisco and/or its affiliates. + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at: + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> + <parent> + <groupId>io.fd.honeycomb.common</groupId> + <artifactId>impl-parent</artifactId> + <version>1.17.01-SNAPSHOT</version> + <relativePath>../../../common/impl-parent</relativePath> + </parent> + + <modelVersion>4.0.0</modelVersion> + <groupId>io.fd.honeycomb</groupId> + <artifactId>rpc-api</artifactId> + <name>${project.artifactId}</name> + <version>1.17.01-SNAPSHOT</version> + <packaging>bundle</packaging> + + <dependencies> + <dependency> + <groupId>org.opendaylight.controller</groupId> + <artifactId>sal-core-api</artifactId> + </dependency> + </dependencies> + +</project> diff --git a/infra/rpc/api/src/main/java/io/fd/honeycomb/rpc/RpcException.java b/infra/rpc/api/src/main/java/io/fd/honeycomb/rpc/RpcException.java new file mode 100644 index 000000000..907ce6c15 --- /dev/null +++ b/infra/rpc/api/src/main/java/io/fd/honeycomb/rpc/RpcException.java @@ -0,0 +1,28 @@ +/* + * Copyright (c) 2016 Cisco and/or its affiliates. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at: + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package io.fd.honeycomb.rpc; + +import com.google.common.annotations.Beta; +import org.opendaylight.controller.md.sal.dom.api.DOMRpcException; + +@Beta +public class RpcException extends DOMRpcException { + + public RpcException(final String message, final Throwable cause) { + super(message, cause); + } +} diff --git a/infra/rpc/api/src/main/java/io/fd/honeycomb/rpc/RpcRegistry.java b/infra/rpc/api/src/main/java/io/fd/honeycomb/rpc/RpcRegistry.java new file mode 100644 index 000000000..b58ed58a6 --- /dev/null +++ b/infra/rpc/api/src/main/java/io/fd/honeycomb/rpc/RpcRegistry.java @@ -0,0 +1,30 @@ +/* + * Copyright (c) 2016 Cisco and/or its affiliates. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at: + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package io.fd.honeycomb.rpc; + +import com.google.common.annotations.Beta; +import java.util.concurrent.CompletionStage; +import javax.annotation.Nonnull; +import javax.annotation.Nullable; +import org.opendaylight.yangtools.yang.binding.DataObject; +import org.opendaylight.yangtools.yang.model.api.SchemaPath; + +@Beta +public interface RpcRegistry { + + @Nonnull CompletionStage invoke(@Nonnull final SchemaPath schemaPath, @Nullable final DataObject request); +} diff --git a/infra/rpc/api/src/main/java/io/fd/honeycomb/rpc/RpcService.java b/infra/rpc/api/src/main/java/io/fd/honeycomb/rpc/RpcService.java new file mode 100644 index 000000000..a86a360d8 --- /dev/null +++ b/infra/rpc/api/src/main/java/io/fd/honeycomb/rpc/RpcService.java @@ -0,0 +1,32 @@ +/* + * Copyright (c) 2016 Cisco and/or its affiliates. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at: + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package io.fd.honeycomb.rpc; + +import com.google.common.annotations.Beta; +import java.util.concurrent.CompletionStage; +import javax.annotation.Nonnull; +import javax.annotation.Nullable; +import org.opendaylight.yangtools.yang.binding.DataObject; +import org.opendaylight.yangtools.yang.model.api.SchemaPath; + +@Beta +public interface RpcService<I extends DataObject, O extends DataObject> { + + @Nonnull CompletionStage<O> invoke(@Nullable final I request); + + @Nonnull SchemaPath getManagedNode(); +} |