<%@ taglib uri="http://xmlns.oracle.com/uix/ui" prefix="uix"%> <%@ taglib uri="http://xmlns.oracle.com/oem/jsp/tag" prefix="oem"%> <%@ page import="oracle.sysman.emSDK.util.jdk.NLSUtil"%> <%@ page import="oracle.cabo.ui.data.BundleDataObject"%> <%@ page import="oracle.sysman.emSDK.util.jdk.NLSUtil"%> <%@ page import="oracle.sysman.db.rsc.sec.EUSMsg"%> <%@ page import="oracle.cabo.ui.data.BundleDataObject"%> <%@ page import="oracle.sysman.emo.adm.security.eus.EUSConstants"%> <%@ page import="oracle.sysman.emo.adm.security.eus.EUSSubComponentsDataSourceConstants"%> <%@ page import="oracle.sysman.emo.adm.security.eus.EUSComponent"%> <%@ page import="oracle.sysman.emo.adm.security.eus.EUSComponentType"%> <%@ page import="oracle.sysman.emo.adm.security.eus.EUSSubComponentType"%> <%@ page import="java.util.ResourceBundle"%> <%@ page import="java.util.Map"%> <%@ page import="java.util.HashMap"%> <% EUSSubComponentType selectedSubComponentType=(EUSSubComponentType)request.getAttribute(EUSConstants.SUB_COMPONENT_TYPE); EUSComponentType componentType = ((EUSComponent)request.getAttribute(EUSConstants.EUS_COMPONENT_CACHED_OBJECT)).getType(); int iEUSComponentType=componentType.getType(); ResourceBundle eusBundle=NLSUtil.getBundle(EUSMsg.class.getName(), request); String sFormDestinationURL=(String)request.getAttribute(EUSConstants.EUS_BASE_URL_TO_COMPONENT); String sPwdAuth="false"; String sKeberosAuth="false"; String sSSLAuth="false"; String sCUDBLink="false"; if(request.getAttribute("EUS_COMPONENT_PROPERTY_1") != null) { String sAuthTypes=(String)request.getAttribute("EUS_COMPONENT_PROPERTY_1"); if(sAuthTypes.indexOf("PWD") != -1) { sPwdAuth="true"; } if(sAuthTypes.indexOf("KRB5") != -1) { sKeberosAuth="true"; } if(sAuthTypes.indexOf("SSL") != -1) { sSSLAuth="true"; } } if(request.getAttribute("EUS_COMPONENT_PROPERTY_2") != null) { sCUDBLink=(String)request.getAttribute("EUS_COMPONENT_PROPERTY_2"); sCUDBLink=sCUDBLink.toLowerCase(); } %>