Class CodegenInfo
- java.lang.Object
-
- io.apicurio.hub.api.codegen.beans.CodegenInfo
-
public class CodegenInfo extends Object
- Author:
- eric.wittmann@gmail.com
-
-
Constructor Summary
Constructors Constructor Description CodegenInfo()Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<CodegenBeanAnnotationDirective>getBeanAnnotations()List<CodegenJavaBean>getBeans()StringgetContextRoot()StringgetDescription()List<CodegenJavaInterface>getInterfaces()StringgetName()StringgetVersion()voidsetBeanAnnotations(List<CodegenBeanAnnotationDirective> beanAnnotations)voidsetBeans(List<CodegenJavaBean> beans)voidsetContextRoot(String contextRoot)voidsetDescription(String description)voidsetInterfaces(List<CodegenJavaInterface> interfaces)voidsetName(String name)voidsetVersion(String version)
-
-
-
Method Detail
-
getInterfaces
public List<CodegenJavaInterface> getInterfaces()
- Returns:
- the interfaces
-
setInterfaces
public void setInterfaces(List<CodegenJavaInterface> interfaces)
- Parameters:
interfaces- the interfaces to set
-
getBeans
public List<CodegenJavaBean> getBeans()
- Returns:
- the beans
-
setBeans
public void setBeans(List<CodegenJavaBean> beans)
- Parameters:
beans- the beans to set
-
getName
public String getName()
- Returns:
- the name
-
setName
public void setName(String name)
- Parameters:
name- the name to set
-
getDescription
public String getDescription()
- Returns:
- the description
-
setDescription
public void setDescription(String description)
- Parameters:
description- the description to set
-
getVersion
public String getVersion()
- Returns:
- the version
-
setVersion
public void setVersion(String version)
- Parameters:
version- the version to set
-
getContextRoot
public String getContextRoot()
- Returns:
- the contextRoot
-
setContextRoot
public void setContextRoot(String contextRoot)
- Parameters:
contextRoot- the contextRoot to set
-
getBeanAnnotations
public List<CodegenBeanAnnotationDirective> getBeanAnnotations()
- Returns:
- the beanAnnotations
-
setBeanAnnotations
public void setBeanAnnotations(List<CodegenBeanAnnotationDirective> beanAnnotations)
- Parameters:
beanAnnotations- the beanAnnotations to set
-
-