Repository: juddi Updated Branches: refs/heads/master 0806d36d9 -> d158cca2a
JUDDI-900 done Project: http://git-wip-us.apache.org/repos/asf/juddi/repo Commit: http://git-wip-us.apache.org/repos/asf/juddi/commit/d158cca2 Tree: http://git-wip-us.apache.org/repos/asf/juddi/tree/d158cca2 Diff: http://git-wip-us.apache.org/repos/asf/juddi/diff/d158cca2 Branch: refs/heads/master Commit: d158cca2a1b44b84759a8b518051fc2396100ce9 Parents: 0806d36 Author: Alex <[email protected]> Authored: Mon Dec 15 20:53:05 2014 -0500 Committer: Alex <[email protected]> Committed: Mon Dec 15 20:53:05 2014 -0500 ---------------------------------------------------------------------- .../main/java/org/apache/juddi/webconsole/hub/UddiHub.java | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/juddi/blob/d158cca2/juddi-gui/src/main/java/org/apache/juddi/webconsole/hub/UddiHub.java ---------------------------------------------------------------------- diff --git a/juddi-gui/src/main/java/org/apache/juddi/webconsole/hub/UddiHub.java b/juddi-gui/src/main/java/org/apache/juddi/webconsole/hub/UddiHub.java index fb519d7..261968b 100644 --- a/juddi-gui/src/main/java/org/apache/juddi/webconsole/hub/UddiHub.java +++ b/juddi-gui/src/main/java/org/apache/juddi/webconsole/hub/UddiHub.java @@ -1714,6 +1714,7 @@ public class UddiHub implements Serializable { sb.append("<table class=\"table\">"); for (int i = 0; i < findBusiness.getBindingTemplate().size(); i++) { sb.append("<tr><td>"); + sb.append(ResourceLoader.GetResource(session, "items.service.key")).append(": "); sb.append("<a href=\"serviceEditor.jsp?id="). append(StringEscapeUtils.escapeHtml(findBusiness.getBindingTemplate().get(i).getServiceKey())). append("\">"); @@ -1727,6 +1728,12 @@ public class UddiHub implements Serializable { sb.append(t); } } + sb.append("</a><br>"); + sb.append(ResourceLoader.GetResource(session, "items.bindingtemplate.key")); + sb.append(": <a href=\"bindingEditor.jsp?id="); + sb.append(StringEscapeUtils.escapeHtml(findBusiness.getBindingTemplate().get(i).getBindingKey())); + sb.append("\">"); + sb.append(StringEscapeUtils.escapeHtml(findBusiness.getBindingTemplate().get(i).getBindingKey())); sb.append("</a>"); sb.append("</td></tr>"); } @@ -2975,7 +2982,7 @@ public class UddiHub implements Serializable { /** * Searches first for a service, then iterates through to identify - * bindings matching the specified criteria. Since UDDI does not have a + * bindings matching the specified criteria. Since UDDI does not have name/keyword searches for a * find_binding API, this is as good as it gets. * * @param keyword --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
