![JAR search and dependency download from the Maven repository](/logo.png)
com.evrythng.thng.resource.model.store.content.Content Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of thng-resource-model Show documentation
Show all versions of thng-resource-model Show documentation
Models for REST resources representations.
/*
* (c) Copyright 2013 EVRYTHNG Ltd London / Zurich
* www.evrythng.com
*/
package com.evrythng.thng.resource.model.store.content;
import com.evrythng.thng.resource.model.core.DurableResourceModel;
import java.util.Map;
/**
* Rest model for a content.
**/
public abstract class Content extends DurableResourceModel {
private static final long serialVersionUID = -3240773220883299927L;
private String name;
private String description;
private Map media;
public Content() {
}
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 Map getMedia() {
return media;
}
public void setMedia(Map media) {
this.media = media;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy