1 package org.hibernate.criterion;2 3 4 /**5 * @author Gavin King6 */7 public class Disjunction extends Junction {8 9 protected Disjunction() {10 super("or");11 }12 13 }14