Rework MethodSerializer (+ fallout)
[controller.git] / opendaylight / config / yang-jmx-generator-plugin / src / main / java / org / opendaylight / controller / config / yangjmxgenerator / plugin / ftl / model / Method.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, 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.controller.config.yangjmxgenerator.plugin.ftl.model;
9
10 import java.util.List;
11 import java.util.Optional;
12 import javax.lang.model.element.Modifier;
13
14 public interface Method {
15     Optional<Modifier> getVisibility();
16
17     List<Modifier> getModifiers();
18
19     String getReturnType();
20
21     String getName();
22
23     List<Field> getParameters();
24
25     String getJavadoc();
26
27     List<Annotation> getAnnotations();
28
29     List<String> getThrowsExceptions();
30
31     Optional<String> getBody();
32 }