blob: f9fe7118d5f7f3868d84395ee61b9034da47f97f [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010-2013 Oracle. All rights reserved.
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0
* which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* Contributors:
* dclarke - EclipseLink 2.3 - MySports Demo Bug 344608
******************************************************************************/
package eclipselink.example.mysports.application.view;
import javax.faces.bean.ManagedBean;
import javax.faces.bean.RequestScoped;
import javax.faces.context.FacesContext;
import javax.servlet.http.HttpServletRequest;
import eclipselink.example.mysports.application.model.Division;
/**
*
* @author dclarke
* @since EclipseLink 2.3
*/
@ManagedBean
@RequestScoped
public class EditDivision extends BaseManagedBean {
protected static final String PAGE = "edit-division";
public Division getDivision() {
return getRepository().getCurrentDivision();
}
public String edit() {
FacesContext facesContext = FacesContext.getCurrentInstance();
HttpServletRequest myRequest = (HttpServletRequest) facesContext.getExternalContext().getRequest();
String value = myRequest.getParameter("division-id");
if (value != null && !value.isEmpty()) {
Division div = getRepository().find(Division.class, Integer.valueOf(value));
getRepository().setCurrentDivision(div);
}
return PAGE;
}
public String save() {
return null;
}
public String cancel() {
return ViewDivision.PAGE;
}
}