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

db.books.AmazonBook Maven / Gradle / Ivy

There is a newer version: 1.2.3
Show newest version
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package db.books;

import db.GraphEntity;
import org.neo4j.ogm.annotation.GraphId;
import org.neo4j.ogm.annotation.NodeEntity;

/**
 *
 * @author zua
 */
@NodeEntity
public class AmazonBook extends GraphEntity {

    private static final long serialVersionUID = 590262573267973488L;

    @GraphId    
    private String apn;
    private String title;
    private String url;

    public String getApn() {
        return apn;
    }

    public void setApn(String apn) {
        this.apn = apn;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }
    
    
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy