/** * Most of the code in the Qalingo project is copyrighted Hoteia and licensed * under the Apache License Version 2.0 (release version 0.8.0) * http://www.apache.org/licenses/LICENSE-2.0 * * Copyright (c) Hoteia, 2012-2014 * http://www.hoteia.com - http://twitter.com/hoteia - contact@hoteia.com * */ package org.hoteia.qalingo.core.pojo.cms; import java.util.Date; public class CmsContentAssetPojo { private Long id; private String name; private String description; private String path; private String scope; private String type; private String size; private Long fileSize; private boolean isDefault; private boolean isGlobal; private int ordering; protected String relativeWebPath; protected String absoluteWebPath; private Date dateCreate; private Date dateUpdate; public Long getId() { return id; } public void setId(Long 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 String getPath() { return path; } public void setPath(String path) { this.path = path; } public String getScope() { return scope; } public void setScope(String scope) { this.scope = scope; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getSize() { return size; } public void setSize(String size) { this.size = size; } public Long getFileSize() { return fileSize; } public void setFileSize(Long fileSize) { this.fileSize = fileSize; } public boolean isDefault() { return isDefault; } public void setDefault(boolean isDefault) { this.isDefault = isDefault; } public boolean isGlobal() { return isGlobal; } public void setGlobal(boolean isGlobal) { this.isGlobal = isGlobal; } public int getOrdering() { return ordering; } public void setOrdering(int ordering) { this.ordering = ordering; } public String getRelativeWebPath() { return relativeWebPath; } public void setRelativeWebPath(String relativeWebPath) { this.relativeWebPath = relativeWebPath; } public String getAbsoluteWebPath() { return absoluteWebPath; } public void setAbsoluteWebPath(String absoluteWebPath) { this.absoluteWebPath = absoluteWebPath; } public Date getDateCreate() { return dateCreate; } public void setDateCreate(Date dateCreate) { this.dateCreate = dateCreate; } public Date getDateUpdate() { return dateUpdate; } public void setDateUpdate(Date dateUpdate) { this.dateUpdate = dateUpdate; } }