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

com.clickntap.stripecubeui.bo.UiResource Maven / Gradle / Ivy

Go to download

Css / Javascript Merger and Minimizer integrated with Stripecube Web App Development

The newest version!
package com.clickntap.stripecubeui.bo;

import com.clickntap.hub.BO;
import com.clickntap.tool.types.Datetime;

public class UiResource extends BO {
	private String name;
	private String version;
	private String path;
	private String content;
	private Number contentSize;
	private String type;
	private Datetime creationTime;
	private Datetime lastModified;

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public String getVersion() {
		return version;
	}

	public void setVersion(String version) {
		this.version = version;
	}

	public String getPath() {
		return path;
	}

	public void setPath(String path) {
		this.path = path;
	}

	public String getContent() {
		return content;
	}

	public void setContent(String content) {
		this.content = content;
	}

	public Number getContentSize() {
		return contentSize;
	}

	public void setContentSize(Number contentSize) {
		this.contentSize = contentSize;
	}

	public String getType() {
		return type;
	}

	public void setType(String type) {
		this.type = type;
	}

	public Datetime getCreationTime() {
		return creationTime;
	}

	public void setCreationTime(Datetime creationTime) {
		this.creationTime = creationTime;
	}

	public Datetime getLastModified() {
		return lastModified;
	}

	public void setLastModified(Datetime lastModified) {
		this.lastModified = lastModified;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy