Package com.avaje.ebean.config

Examples of com.avaje.ebean.config.AutofetchMode


    return autoFetchManager.getMode().name();
  }

  public void setMode(String implicitMode) {
    try {
      AutofetchMode mode = AutofetchMode.valueOf(implicitMode);
      autoFetchManager.setMode(mode);
    } catch (Exception e) {
      logger.info("Invalid implicit mode attempted "+e.getMessage());
    }
  }
View Full Code Here

TOP

Related Classes of com.avaje.ebean.config.AutofetchMode

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.