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

com.evrythng.thng.resource.model.store.BooleanProperty Maven / Gradle / Ivy

There is a newer version: 1.33
Show newest version
/*
 * (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