![JAR search and dependency download from the Maven repository](/logo.png)
com.evrythng.thng.resource.model.store.StringProperty 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 2012 EVRYTHNG Ltd London / Zurich
* www.evrythng.com
*/
package com.evrythng.thng.resource.model.store;
/**
* Model representation for properties.
*/
public class StringProperty extends Property {
private static final long serialVersionUID = 795449469216913053L;
/**
* Creates a new empty instance of {@link StringProperty}.
*/
public StringProperty() {
/* Required by jackson. */
}
/**
* Creates a new instance of {@link StringProperty}.
*/
public StringProperty(final String key, final String value) {
super(key, value);
}
/**
* Creates a new instance of {@link StringProperty}.
*/
public StringProperty(final String key, final String value, final Long timestamp) {
super(key, value, timestamp);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy