1 //$Id: Fetchable.java,v 1.3 2005/04/28 08:35:10 oneovthafew Exp $2 package org.hibernate.mapping;3 4 import org.hibernate.FetchMode;5 6 /**7 * Any mapping with an outer-join attribute8 * @author Gavin King9 */10 public interface Fetchable {11 public FetchMode getFetchMode();12 public void setFetchMode(FetchMode joinedFetch);13 public boolean isLazy();14 public void setLazy(boolean lazy);15 }16