<%@ page language="java" %> <% /* Copyright 2005-2006 Michelle Osmond * * Licensed 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. */ %> <%@ taglib uri="http://java.sun.com/portlet" prefix="portlet" %> <%@ page import="java.util.*,message.*"%> <% // retrieve data String portletID = (String) request.getAttribute("portletID"); MessageCentre messageCentre = (MessageCentre) request.getAttribute("messageCentre"); Set inputKeys = (Set) request.getAttribute("inputKeys"); Set outputKeys = (Set) request.getAttribute("outputKeys"); Set globalBoxKeys = (Set) request.getAttribute("globalBoxKeys"); Set availableSourceKeys = (Set) request.getAttribute("availableSourceKeys"); %> <% // display the current message mappings if (inputKeys.isEmpty() && outputKeys.isEmpty()){ %>

There are no configurable message mappings for this portlet.

<% return; } %>

Set up message mappings

<% // display any messages from the form if (request.getAttribute("mapMsg")!=null){ String mapMsg = request.getAttribute("mapMsg").toString(); if (mapMsg.trim().length()>0){ %>

<%=mapMsg%>

<% } } %>
<% if (inputKeys.size()>0){ %>

Inputs:

<% int i=1; for (Iterator it=inputKeys.iterator(); it.hasNext();){ MessageBoxKey key = (MessageBoxKey) it.next(); MessageBoxKey currentSourceKey = messageCentre.findInputSource(key); %> <% i++; } %>
Local Message Read from Source
<%=key.getName()%>
<% } %> <% if (outputKeys.size()>0){ %>

Outputs:

<% int i=1; for (Iterator it=outputKeys.iterator(); it.hasNext();){ MessageBoxKey key = (MessageBoxKey) it.next(); Set currentTargets = messageCentre.findOutputTargets(key); %> <% i++; } %>
Local Output Publish to Target
<%=key.getName()%>
New global output:
Name:
Namespace:
<% } %>