io.spotnext.cms.rendering.view.View Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spot-cms-base Show documentation
Show all versions of spot-cms-base Show documentation
The spOt microservice framework.
package io.spotnext.cms.rendering.view;
/**
* View class.
*/
public class View {
private ViewContext context;
private String templateScript = "";
/**
* Getter for the field templateScript
.
*
* @return a {@link java.lang.String} object.
*/
public String getTemplateScript() {
return templateScript;
}
/**
* Setter for the field templateScript
.
*
* @param templateScript a {@link java.lang.String} object.
*/
public void setTemplateScript(final String templateScript) {
this.templateScript = templateScript;
}
/**
* Getter for the field context
.
*
* @return a {@link io.spotnext.cms.rendering.view.ViewContext} object.
*/
public ViewContext getContext() {
return context;
}
/**
* Setter for the field context
.
*
* @param context a {@link io.spotnext.cms.rendering.view.ViewContext} object.
*/
public void setContext(final ViewContext context) {
this.context = context;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy