FooDocument.java :  » CouchDB » jcouchdb » org » jcouchdb » db » Java Open Source

Java Open Source » CouchDB » jcouchdb 
jcouchdb » org » jcouchdb » db » FooDocument.java
package org.jcouchdb.db;

import org.jcouchdb.document.BaseDocument;

public class FooDocument extends BaseDocument
{
    /**
     * 
     */
    private static final long serialVersionUID = 5171600814795175855L;
    private String type="foo",value;

    public FooDocument()
    {

    }

    public FooDocument(String value)
    {
        this.value = value;
    }

    public String getType()
    {
        return type;
    }

    public void setType(String type)
    {
        this.type = type;
    }

    public String getValue()
    {
        return value;
    }

    public void setValue(String value)
    {
        this.value = value;
    }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.