com.evrythng.thng.resource.model.store.BooleanProperty 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 2015 EVRYTHNG Ltd London / Zurich
* www.evrythng.com
*/
package com.evrythng.thng.resource.model.store;
/**
* Model representation for boolean properties.
*/
public final class BooleanProperty extends Property {
private static final long serialVersionUID = -806157898317946571L;
/**
* Creates a new empty instance of {@link BooleanProperty}.
*/
public BooleanProperty() {
/* Required by jackson. */
}
/**
* Creates a new instance of {@link BooleanProperty}.
*/
public BooleanProperty(final String key, final Boolean value) {
super(key, value);
}
/**
* Creates a new instance of {@link BooleanProperty}.
*/
public BooleanProperty(final String key, final Boolean value, final Long timestamp) {
super(key, value, timestamp);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy