Package ru.portnyagin.helpdeskru.model

Examples of ru.portnyagin.helpdeskru.model.StateRequest


    public CustomerClosedRequestsController() {

        actionString = "/customer/closed_requests";
       
        listStateRequest = new ArrayList<>();
        listStateRequest.add(new StateRequest("CLOSED"));
       
    }
View Full Code Here


    public CustomerNeedInfoDoneRequestsController() {

        actionString = "/customer/needinfo_done_requests";
       
        listStateRequest = new ArrayList<>();
        listStateRequest.add(new StateRequest("NEEDINFO"));
        listStateRequest.add(new StateRequest("DONE"));
       
    }
View Full Code Here

    public CustomerOpenRequestsController() {

        actionString = "/customer/open_requests";
       
        listStateRequest = new ArrayList<>();
        listStateRequest.add(new StateRequest("OPENED"));
        listStateRequest.add(new StateRequest("REOPENED"));
        listStateRequest.add(new StateRequest("INPROGRESS"));
        listStateRequest.add(new StateRequest("HOLDED"));
       
    }
View Full Code Here

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

        StateRequest dicSost = stateRequestService.find(value);

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

       
        showRequestOnlyForCurrentUser = true;
        actionString = "/service/closed_requests";
       
        listStateRequest = new ArrayList<>();
        listStateRequest.add(new StateRequest("CLOSED"));

       
    }
View Full Code Here

       
        showRequestOnlyForCurrentUser = true;
        actionString = "/service/holded_requests";
       
        listStateRequest = new ArrayList<>();
        listStateRequest.add(new StateRequest("HOLDED"));
       
       
    }
View Full Code Here

        showRequestOnlyForCurrentUser = true;
        actionString = "/service/inprogress_requests";
       
        listStateRequest = new ArrayList<>();
        listStateRequest.add(new StateRequest("OPENED"));
        listStateRequest.add(new StateRequest("REOPENED"));       
        listStateRequest.add(new StateRequest("INPROGRESS"));       
       
    }
View Full Code Here

       
        showRequestOnlyForCurrentUser = false;
        actionString = "/service/opened_requests";
       
        listStateRequest = new ArrayList<>();
        listStateRequest.add(new StateRequest("OPENED"));
        listStateRequest.add(new StateRequest("REOPENED"));
               
    }
View Full Code Here

       
        showRequestOnlyForCurrentUser = true;
        actionString = "/service/needinfodone_requests";
       
        listStateRequest = new ArrayList<>();
        listStateRequest.add(new StateRequest("NEEDINFO"));
        listStateRequest.add(new StateRequest("DONE"));
         
    }
View Full Code Here

TOP

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

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.