Package no.ugland.utransprod.model

Examples of no.ugland.utransprod.model.SpecialConcern


    /**
     * @see no.ugland.utransprod.dao.SpecialConcernDAO#findByDescription(java.lang.String)
     */
    public final SpecialConcern findByDescription(final String description)
            throws ProTransException {
        SpecialConcern specialConcern = new SpecialConcern();
        specialConcern.setDescription(description);
        List<SpecialConcern> list = find(specialConcern);
        if (list == null || list.size() != 1) {
            throw new ProTransException("Kunne ikke finne spesielt hensyn for "
                    + description);
        }
View Full Code Here

TOP

Related Classes of no.ugland.utransprod.model.SpecialConcern

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.