Package evolaris.framework.sys.datamodel

Examples of evolaris.framework.sys.datamodel.Configuration


    this.session = session;
  }

  public String getMailSmtpHost() {
    try {
      Configuration config = (Configuration)session.get(Configuration.class, 1L);
      if (config == null){
        throw new ConfigurationException("Missing configuration entry");
      }
      return config.getMailSmtpHost();
    } catch (Throwable e) {
      throw new ConfigurationException("Error getting MailSmtpHost", e);
    }
  }
View Full Code Here

TOP

Related Classes of evolaris.framework.sys.datamodel.Configuration

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.