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

com.googlecode.objectify.test.entity.HolderOfString Maven / Gradle / Ivy

Go to download

*** THIS VERSION UPLOADED FOR USE WITH CEDAR-COMMON, TO AVOID DEPENDENCIES ON GOOGLE CODE-BASED MAVEN REPOSITORIES. *** The simplest convenient interface to the Google App Engine datastore

The newest version!
/*
 * $Id: HolderOfString.java 319 2010-02-09 02:33:41Z lhoriman $
 * $URL: https://objectify-appengine.googlecode.com/svn/trunk/src/com/googlecode/objectify/test/entity/HolderOfString.java $
 */

package com.googlecode.objectify.test.entity;

import com.googlecode.objectify.annotation.Cached;


/**
 * A holder of a string.
 * 
 * @author Scott Hernandez
 */
@Cached
public class HolderOfString extends Holder
{
	/** Default constructor must always exist */
	public HolderOfString() {}

	public HolderOfString(String s) {super(s);}

	public void setMyThing(String s)
	{
		this.thing = s;
	}

	public String getMyThing()
	{
		return this.thing;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy