blob: 4dfdd41734c822ec9f15f182506e25a27f71e962 [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.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.roller.util.UUIDGenerator;
import java.io.Serializable;
/**
* A pojo that will maintain different template codes for one template
*/
public class CustomTemplateRendition implements Serializable, TemplateRendition {
private static final long serialVersionUID = -1497618963802805151L;
private String id = UUIDGenerator.generateUUID();
private WeblogTemplate weblogTemplate = null;
// template contents
private String template = null;
private RenditionType type = null;
private TemplateLanguage templateLanguage = null;
public CustomTemplateRendition(WeblogTemplate template, RenditionType type) {
this.weblogTemplate = template;
this.type = type;
weblogTemplate.addTemplateRendition(this);
}
public CustomTemplateRendition() {
}
public WeblogTemplate getWeblogTemplate() {
return weblogTemplate;
}
public void setWeblogTemplate(WeblogTemplate weblogTemplate) {
this.weblogTemplate = weblogTemplate;
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
@Override
public String getTemplate() {
return template;
}
@Override
public void setTemplate(String template) {
this.template = template;
}
// @Override
public RenditionType getType() {
return type;
}
// @Override
public void setType(RenditionType type) {
this.type = type;
}
// ------------------------------------------------------- Good citizenship
public String toString() {
return "{" + getId()
+ ", " + getWeblogTemplate().getId()
+ ", [ " + getTemplate()
+ "] , " + getType() + "}";
}
public boolean equals(Object other) {
if (other == this) {
return true;
}
if (!(other instanceof CustomTemplateRendition)) {
return false;
}
CustomTemplateRendition o = (CustomTemplateRendition) other;
return new EqualsBuilder().append(getWeblogTemplate().getId(), o.getWeblogTemplate().getId())
.append(getTemplate(), o.getTemplate()).isEquals();
}
public int hashCode() {
return new HashCodeBuilder().append(getWeblogTemplate().getId())
.append(getTemplate()).toHashCode();
}
// @Override
public TemplateLanguage getTemplateLanguage() {
return templateLanguage;
}
// @Override
public void setTemplateLanguage(TemplateLanguage templateLanguage) {
this.templateLanguage = templateLanguage;
}
}