Bug 509: Fixed incorrect merging of Data Store Writes / Events
[controller.git] / opendaylight / config / yang-jmx-generator-plugin / src / main / java / org / opendaylight / controller / config / yangjmxgenerator / plugin / ftl / FtlTemplate.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;
9
10 import java.io.File;
11 import java.util.List;
12
13 import org.opendaylight.controller.config.yangjmxgenerator.plugin.ftl.model.Annotation;
14 import org.opendaylight.controller.config.yangjmxgenerator.plugin.ftl.model.Field;
15 import org.opendaylight.controller.config.yangjmxgenerator.plugin.ftl.model.Header;
16 import org.opendaylight.controller.config.yangjmxgenerator.plugin.ftl.model.Method;
17 import org.opendaylight.controller.config.yangjmxgenerator.plugin.ftl.model.TypeDeclaration;
18
19 public interface FtlTemplate {
20
21     Header getHeader();
22
23     String getPackageName();
24
25     String getJavadoc();
26
27     public List<Annotation> getAnnotations();
28
29     TypeDeclaration getTypeDeclaration();
30
31     public String getFullyQualifiedName();
32
33     public List<Field> getFields();
34
35     List<? extends Method> getMethods();
36
37     /**
38      * @return relative path to file to be created.
39      */
40     public File getRelativeFile();
41
42     /**
43      *
44      * @return ftl template location
45      */
46     public String getFtlTempleteLocation();
47 }