Package org.molgenis.app.manager.model
Class AppResponse
- java.lang.Object
-
- org.molgenis.app.manager.model.AppResponse
-
public abstract class AppResponse extends Object
-
-
Constructor Summary
Constructors Constructor Description AppResponse()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description static AppResponsecreate(App app)abstract StringgetAppConfig()abstract StringgetDescription()abstract StringgetId()abstract booleangetIncludeMenuAndFooter()abstract booleangetIsActive()abstract StringgetLabel()abstract StringgetName()abstract StringgetResourceFolder()abstract StringgetTemplateContent()abstract StringgetVersion()
-
-
-
Method Detail
-
getId
public abstract String getId()
-
getName
public abstract String getName()
-
getLabel
public abstract String getLabel()
-
getDescription
public abstract String getDescription()
-
getIsActive
public abstract boolean getIsActive()
-
getIncludeMenuAndFooter
public abstract boolean getIncludeMenuAndFooter()
-
getTemplateContent
public abstract String getTemplateContent()
-
getVersion
public abstract String getVersion()
-
getResourceFolder
public abstract String getResourceFolder()
-
getAppConfig
@Nullable @CheckForNull public abstract String getAppConfig()
-
create
public static AppResponse create(App app)
-
-