sk.seges.sesam.dao.Conjunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sesam-core Show documentation
Show all versions of sesam-core Show documentation
Core interfaces and support classes to ease
information systems development. Usually requirement is to implement
multi-tier application using database, DAOs, services, models and
listeners.
The newest version!
/**
*
*/
package sk.seges.sesam.dao;
/**
* @author ladislav.gazo
*/
public class Conjunction extends Junction {
private static final long serialVersionUID = 7806771561676701600L;
public Conjunction() { }
public Junction and(Criterion criterion) {
return add(criterion);
}
@Override
public String getOperation() {
return "conjunction";
}
}