Package ru.portnyagin.helpdeskru.model

Examples of ru.portnyagin.helpdeskru.model.ServiceObject


    public Object getAsObject(FacesContext context, UIComponent component, String value) {
        if (value == null || value.length() == 0){
            return null;
        }

        ServiceObject technika = serviceObjectService.find(Long.valueOf(value));

        if (technika == null) {
            throw new ConverterException(new FacesMessage("Unknown ServiceObject ID: " + value));
        }
View Full Code Here


        this.currentServiceObject = currentServiceObject;
    }
   
   
    public void addNewServiceObject() {
        listAllServiceObject.add(0, new ServiceObject());
    }
View Full Code Here

TOP

Related Classes of ru.portnyagin.helpdeskru.model.ServiceObject

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.