blob: 50967840ad00af596e8b3cad8f2b3cc0804fd60e [file] [log] [blame]
Vidyashree Rama6a72b792016-03-29 12:00:42 +05301/*
Brian O'Connor5ab426f2016-04-09 01:19:45 -07002 * Copyright 2016-present Open Networking Laboratory
Vidyashree Rama6a72b792016-03-29 12:00:42 +05303 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package org.onosproject.yangutils.translator.tojava.javamodel;
18
19import java.io.IOException;
20import org.onosproject.yangutils.datamodel.YangRpc;
21import org.onosproject.yangutils.translator.tojava.JavaCodeGenerator;
janani bde4ffab2016-04-15 16:18:30 +053022import org.onosproject.yangutils.translator.tojava.utils.YangPluginConfig;
Vidyashree Rama6a72b792016-03-29 12:00:42 +053023
24/**
Bharat saraswald9822e92016-04-05 15:13:44 +053025 * Represents rpc information extended to support java code generation.
Vidyashree Rama6a72b792016-03-29 12:00:42 +053026 */
27public class YangJavaRpc extends YangRpc implements JavaCodeGenerator {
28
29 /**
30 * Creates an instance of java Rpc.
31 */
32 public YangJavaRpc() {
33 }
34
35 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053036 * Prepares the information for java code generation corresponding to YANG
Vidyashree Rama6a72b792016-03-29 12:00:42 +053037 * rpc info.
38 *
janani bde4ffab2016-04-15 16:18:30 +053039 * @param yangPlugin YANG plugin config
Vidyashree Rama6a72b792016-03-29 12:00:42 +053040 * @throws IOException IO operation fail
41 */
42 @Override
janani bde4ffab2016-04-15 16:18:30 +053043 public void generateCodeEntry(YangPluginConfig yangPlugin) throws IOException {
Vidyashree Rama6a72b792016-03-29 12:00:42 +053044 // TODO
45 }
46
47 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053048 * Creates a java file using the YANG rpc info.
Vidyashree Rama6a72b792016-03-29 12:00:42 +053049 *
50 * @throws IOException IO operation fail
51 */
52 @Override
53 public void generateCodeExit() throws IOException {
54 // TODO
55 }
56}