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

io.continual.services.model.impl.json.CommonObjectData Maven / Gradle / Ivy

There is a newer version: 0.3.16
Show newest version
package io.continual.services.model.impl.json;

import io.continual.services.model.core.data.JsonModelObject;
import io.continual.services.model.core.data.ModelObject;

/**
 * In-memory data for an object.
 */
public class CommonObjectData extends JsonModelObject
{
	/**
	 * Construct an empty object
	 */
	public CommonObjectData ()
	{
		super ();
	}

	public CommonObjectData ( ModelObject data )
	{
		super ( JsonModelObject.modelObjectToJson ( data ) );
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy