blob: b109789c1afe659602b9d9cdee525cfabb311268 [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;
22
23/**
Bharat saraswald9822e92016-04-05 15:13:44 +053024 * Represents rpc information extended to support java code generation.
Vidyashree Rama6a72b792016-03-29 12:00:42 +053025 */
26public class YangJavaRpc extends YangRpc implements JavaCodeGenerator {
27
28 /**
29 * Creates an instance of java Rpc.
30 */
31 public YangJavaRpc() {
32 }
33
34 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053035 * Prepares the information for java code generation corresponding to YANG
Vidyashree Rama6a72b792016-03-29 12:00:42 +053036 * rpc info.
37 *
38 * @param codeGenDir code generation directory
39 * @throws IOException IO operation fail
40 */
41 @Override
42 public void generateCodeEntry(String codeGenDir) throws IOException {
43 // TODO
44 }
45
46 /**
Bharat saraswald9822e92016-04-05 15:13:44 +053047 * Creates a java file using the YANG rpc info.
Vidyashree Rama6a72b792016-03-29 12:00:42 +053048 *
49 * @throws IOException IO operation fail
50 */
51 @Override
52 public void generateCodeExit() throws IOException {
53 // TODO
54 }
55}