blob: efc7a3f5f85a6d4ff2e9ba18d920d231aa79f1b4 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. The ASF licenses this file to You
* under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License. For additional information regarding
* copyright in this work, please see the NOTICE file in the top level
* directory of this distribution.
*/
package org.apache.roller.weblogger.pojos;
import org.apache.roller.weblogger.WebloggerException;
import org.apache.roller.weblogger.business.themes.SharedThemeTemplateRendition;
import org.apache.roller.weblogger.pojos.TemplateRendition.RenditionType;
import org.apache.roller.weblogger.pojos.TemplateRendition.TemplateLanguage;
import java.io.Serializable;
import java.util.Date;
/**
* Represents a simple static Template.
*
* This template is not persisted or managed in any way, this class is here
* mainly as a wrapper so that we can represent our static template files as
* an object.
*/
public class StaticTemplate implements Template, Serializable {
private String id = null;
private String name = null;
private String description = null;
private Date lastModified = new Date();
private String outputContentType = null;
private TemplateRendition templateRendition;
public StaticTemplate(String id, TemplateLanguage lang) {
this.id = id;
this.name = id;
this.description = id;
templateRendition = new SharedThemeTemplateRendition();
templateRendition.setTemplateLanguage(lang);
templateRendition.setType(RenditionType.STANDARD);
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Date getLastModified() {
return lastModified;
}
public void setLastModified(Date lastModified) {
this.lastModified = lastModified;
}
public String getOutputContentType() {
return outputContentType;
}
public TemplateRendition getTemplateRendition(RenditionType type) throws WebloggerException {
// only one rendition for now
return templateRendition;
}
public void setOutputContentType(String outputContentType) {
this.outputContentType = outputContentType;
}
}