Package org.calfonso.aurum.domain

Examples of org.calfonso.aurum.domain.CatPlaza


public class CatPlazaConverter implements Converter{
    @Inject CatPlazaService catPlazaService;

    @Override
    public CatPlaza getAsObject(FacesContext context, UIComponent component, String value) {
        CatPlaza catPlaza = catPlazaService.findByName(value);
        return catPlaza;
    }
View Full Code Here

TOP

Related Classes of org.calfonso.aurum.domain.CatPlaza

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.