<%-- * Copyright by Intland Software * * All rights reserved. * * This software is the confidential and proprietary information * of Intland Software. ("Confidential Information"). You * shall not disclose such Confidential Information and shall use * it only in accordance with the terms of the license agreement * you entered into with Intland. * * $Revision$ $Date$ --%> <%@ taglib uri="jstl-c" prefix="c" %> <%-- JSP fragment for getting notifications when somebody else modified the current identifiable. --%> <%@page import="com.intland.codebeamer.security.ProjectRequestWrapper"%> <%@page import="com.intland.codebeamer.persistence.dto.base.IdentifiableDto"%> <%@page import="com.intland.codebeamer.remoting.GroupTypeClassUtils"%> <% Object projectAware = request.getAttribute("PROJECT_AWARE_DTO"); if (projectAware != null && projectAware instanceof IdentifiableDto) { Integer groupType = GroupTypeClassUtils.objectToGroupType(projectAware); Integer id = ((IdentifiableDto) projectAware).getId(); pageContext.setAttribute("groupType", groupType); pageContext.setAttribute("id", id); } %>