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

com.github.napp.database.impl.Entity Maven / Gradle / Ivy

There is a newer version: 1.1.8
Show newest version
/**
 *
 */
package com.github.napp.database.impl;

import com.github.napp.database.IEntity;

/**
 * @author Alexandru Bledea
 * @since Sep 22, 2013
 */
public class Entity implements IEntity {

	private int id;

	/* (non-Javadoc)
	 * @see com.github.napp.database.IEntity#getId()
	 */
	@Override
	public int getId() {
		return id;
	}

	/* (non-Javadoc)
	 * @see com.github.napp.database.IEntity#setId(int)
	 */
	@Override
	public void setId(int id) {
		this.id = id;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy