web.event-sink-config.add_event_sink.jsp Maven / Gradle / Ivy
<%--
~ Copyright (c) 2014, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
~
~ Licensed to the Apache Software Foundation (ASF) under one or more
~ contributor license agreements. See the NOTICE file distributed with
~ this work for additional information regarding copyright ownership.
~
~ The ASF licenses this file to You under the Apache License, Version 2.0
~
~ (the "License"); you may not use this file except in compliance with
~ the License. You may obtain a copy of the License at
~ http://www.apache.org/licenses/LICENSE-2.0
~ Unless required by applicable law or agreed to in writing, software
~ distributed under the License is distributed on an "AS IS" BASIS,
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
~ See the License for the specific language governing permissions and
~ limitations under the License.
--%>
<%@ page import="org.apache.axis2.context.ConfigurationContext" %>
<%@ page import="org.wso2.carbon.CarbonConstants" %>
<%@ page import="org.wso2.carbon.event.sink.xsd.EventSink" %>
<%@ page import="org.wso2.carbon.event.sink.config.ui.PublishEventMediatorConfigAdminClient" %>
<%@ page import="org.wso2.carbon.ui.CarbonUIUtil" %>
<%@ page import="org.wso2.carbon.utils.ServerConstants" %>
<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
<%@ taglib uri="http://wso2.org/projects/carbon/taglibs/carbontags.jar" prefix="carbon" %>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%
response.setHeader("Cache-Control", "no-cache");
%>
<%
response.setHeader("Cache-Control", "no-cache");
String action = request.getParameter("action");
EventSink eventSink = null;
if (action.equals("edit")) {
String backendServerURL = CarbonUIUtil.getServerURL(config.getServletContext(), session);
String cookie = (String) session.getAttribute(ServerConstants.ADMIN_SERVICE_COOKIE);
ConfigurationContext configContext =
(ConfigurationContext) config.getServletContext().getAttribute(CarbonConstants.CONFIGURATION_CONTEXT);
PublishEventMediatorConfigAdminClient publishEventMediatorConfigAdminClient =
new PublishEventMediatorConfigAdminClient(cookie, backendServerURL, configContext, request.getLocale());
eventSink =
publishEventMediatorConfigAdminClient.getEventSinkByName(request.getParameter("name"));
}else if(action.equals("add")){
eventSink = new EventSink();
eventSink.setName("");
eventSink.setUsername("");
eventSink.setPassword("");
eventSink.setReceiverUrlSet("");
eventSink.setAuthenticationUrlSet("");
}
%>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy