rs.data.hibernate.bo.AbstractHibernateStringBO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of data-hibernate Show documentation
Show all versions of data-hibernate Show documentation
Hibernate extension for Data Access classes
/*
* This file is part of RS Library (Data Hibernate Library).
*
* RS Library is free software: you can redistribute it
* and/or modify it under the terms of version 3 of the GNU
* Lesser General Public License as published by the Free Software
* Foundation.
*
* RS Library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with RS Library. If not, see
* .
*/
package rs.data.hibernate.bo;
import rs.data.impl.dto.GeneralDTO;
/**
* Hibernate BO for String based keys.
* @author ralph
*
*/
public abstract class AbstractHibernateStringBO> extends AbstractHibernateBO {
/**
* Serial UID.
*/
private static final long serialVersionUID = 4550720926743247410L;
/**
* Constructor.
*/
public AbstractHibernateStringBO() {
}
/**
* Constructor.
* @param transferObject
*/
public AbstractHibernateStringBO(T transferObject) {
super(transferObject);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy