All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.broadleafcommerce.core.content.domain.Content Maven / Gradle / Ivy

There is a newer version: 3.1.15-GA
Show newest version
/*
 * Copyright 2008-2012 the original author or authors.
 *
 * 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.
 */

package org.broadleafcommerce.core.content.domain;

import java.util.Date;


/**
* Basic content item for the BLC CMS support
*
* @author dwtalk
 */
public interface Content {

    public Date getActiveEndDate();

    public Date getActiveStartDate();

    public String getApprovedBy();

    public Date getApprovedDate();

    public String getBrowserTitle();
    
    public Date getContentDate();

    public String getContentType();
    
    public String getDisplayRule();

    public Boolean getDeployed();

    public String getDescription();

    public Integer getId();

    public String getKeywords();

    public String getLanguageCode();

    public Date getLastModifiedDate();

    public String getLastModifiedBy();

    public String getMetaDescription();

    public String getNote();

    public Boolean getOnline();

    public Integer getParentContentId();

    public Integer getPriority();

    public String getRejectedBy();

    public Date getRejectedDate();

    public String getRenderTemplate();

    public String getSandbox();

    public String getSubmittedBy();

    public Date getSubmittedDate();

    public String getTitle();

    public String getUrlTitle();

    public void setActiveEndDate(Date activeEndDate);

    public void setActiveStartDate(Date activeStartDate);

    public void setApprovedBy(String approvedBy);

    public void setApprovedDate(Date approvedDate);

    public void setBrowserTitle(String browserTitle);
    
    public void setContentDate(Date contentDate);

    public void setContentType(String contentType);

    public void setDisplayRule(String displayRule);

    public void setDeployed(Boolean deployed);

    public void setDescription(String description);

    public void setId(Integer id);

    public void setKeywords(String keywords);

    public void setLanguageCode(String languageCode);

    public void setLastModifiedDate(Date lastModifiedDate);

    public void setLastModifiedBy(String lastModifiedBy);

    public void setMetaDescription(String metaDescription);

    public void setNote(String note);

    public void setOnline(Boolean online);

    public void setParentContentId(Integer parentContentId);

    public void setPriority(Integer priority);

    public void setRejectedBy(String rejectedBy);

    public void setRejectedDate(Date rejectedDate);

    public void setRenderTemplate(String renderTemplate);

    public void setSandbox(String sandbox);

    public void setSubmittedBy(String submimttedBy);

    public void setSubmittedDate(Date submittedDate);

    public void setTitle(String title);

    public void setUrlTitle(String urlTitle);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy