com.github.napp.database.impl.Entity Maven / Gradle / Ivy
/**
*
*/
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