/**
*
* @author ilya portnyagin iportnyagin@gmail.com
*/
package ru.portnyagin.helpdeskru.controller.service;
import java.util.ArrayList;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.ViewScoped;
import ru.portnyagin.helpdeskru.model.StateRequest;
@ManagedBean(name = "serviceNeedInfoDoneRequests")
@ViewScoped
public class ServiceNeedInfoDoneRequestsController extends ServiceController {
public ServiceNeedInfoDoneRequestsController() {
showRequestOnlyForCurrentUser = true;
actionString = "/service/needinfodone_requests";
listStateRequest = new ArrayList<>();
listStateRequest.add(new StateRequest("NEEDINFO"));
listStateRequest.add(new StateRequest("DONE"));
}
}