
org.broadleafcommerce.common.structure.dto.StructuredContentDTOWrapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of broadleaf-common Show documentation
Show all versions of broadleaf-common Show documentation
A collection of classes shared by broadleaf profile, cms, admin, and core.
/*
* #%L
* BroadleafCommerce Common Libraries
* %%
* Copyright (C) 2009 - 2014 Broadleaf Commerce
* %%
* Licensed 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.
* #L%
*/
package org.broadleafcommerce.common.structure.dto;
import java.util.List;
import java.util.Map;
/**
* Provides a wrapper class that can be used to alter the priority of a structuredcontentdto.
* @author bpolster
*
*/
public class StructuredContentDTOWrapper extends StructuredContentDTO {
private static final long serialVersionUID = 1L;
private StructuredContentDTO structuredContentDTO;
private Integer priority;
public StructuredContentDTOWrapper(StructuredContentDTO structuredContentDTO) {
this.structuredContentDTO = structuredContentDTO;
}
public boolean equals(Object arg0) {
return structuredContentDTO.equals(arg0);
}
public Object getPropertyValue(String propertyName) {
return structuredContentDTO.getPropertyValue(propertyName);
}
public Long getId() {
return structuredContentDTO.getId();
}
public String getContentName() {
return structuredContentDTO.getContentName();
}
public String getContentType() {
return structuredContentDTO.getContentType();
}
public String getLocaleCode() {
return structuredContentDTO.getLocaleCode();
}
public Integer getPriority() {
if (priority != null) {
return priority;
} else {
return structuredContentDTO.getPriority();
}
}
public Map getValues() {
return structuredContentDTO.getValues();
}
public String getRuleExpression() {
return structuredContentDTO.getRuleExpression();
}
public List getItemCriteriaDTOList() {
return structuredContentDTO.getItemCriteriaDTOList();
}
public int hashCode() {
return structuredContentDTO.hashCode();
}
public void setId(Long id) {
structuredContentDTO.setId(id);
}
public void setContentName(String contentName) {
structuredContentDTO.setContentName(contentName);
}
public void setContentType(String contentType) {
structuredContentDTO.setContentType(contentType);
}
public void setLocaleCode(String localeCode) {
structuredContentDTO.setLocaleCode(localeCode);
}
public void setPriority(Integer priority) {
structuredContentDTO.setPriority(priority);
}
public void setValues(Map values) {
structuredContentDTO.setValues(values);
}
public void setRuleExpression(String ruleExpression) {
structuredContentDTO.setRuleExpression(ruleExpression);
}
public void setItemCriteriaDTOList(List itemCriteriaDTOList) {
structuredContentDTO.setItemCriteriaDTOList(itemCriteriaDTOList);
}
public String toString() {
return structuredContentDTO.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy