Package org.itnaf.model

Examples of org.itnaf.model.SystemValue


    /**
     * @see org.itnaf.dao.SystemValueDAO#getSystemValue(String name)
     */
    public SystemValue getSystemValue(final String name) {
        SystemValue systemValue = (SystemValue) getHibernateTemplate().get(SystemValue.class, name);
        if (systemValue == null) {
            log.warn("uh oh, systemValue with name '" + name + "' not found...");
            throw new ObjectRetrievalFailureException(SystemValue.class, name);
        }

View Full Code Here

TOP

Related Classes of org.itnaf.model.SystemValue

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.