blob: 570b124a0e07e64412a790d2fc858d5fdc6e18da [file] [log] [blame]
<?xml version="1.0" encoding="UTF-8"?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" lang="en"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/><link rel="stylesheet" href="../jacoco-resources/report.css" type="text/css"/><link rel="shortcut icon" href="../jacoco-resources/report.gif" type="image/gif"/><title>RMINotifier.java</title><link rel="stylesheet" href="../jacoco-resources/prettify.css" type="text/css"/><script type="text/javascript" src="../jacoco-resources/prettify.js"></script></head><body onload="window['PR_TAB_WIDTH']=4;prettyPrint()"><div class="breadcrumb" id="breadcrumb"><span class="info"><a href="../jacoco-sessions.html" class="el_session">Sessions</a></span><a href="../index.html" class="el_report">jUDDI Core Services</a> &gt; <a href="index.source.html" class="el_package">org.apache.juddi.subscription.notify</a> &gt; <span class="el_source">RMINotifier.java</span></div><h1>RMINotifier.java</h1><pre class="source lang-java linenums">/*
* Copyright 2001-2008 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the &quot;License&quot;);
* 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 &quot;AS IS&quot; 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.
*
*/
package org.apache.juddi.subscription.notify;
import java.io.IOException;
import java.net.URI;
import java.net.URISyntaxException;
import java.rmi.NotBoundException;
import java.rmi.RemoteException;
import java.rmi.registry.LocateRegistry;
import java.rmi.registry.Registry;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.juddi.api_v3.AccessPointType;
import org.apache.juddi.model.BindingTemplate;
import org.uddi.api_v3.DispositionReport;
import org.uddi.subr_v3.NotifySubscriptionListener;
import org.uddi.v3_service.DispositionReportFaultMessage;
import org.uddi.v3_service.UDDISubscriptionListenerPortType;
public class RMINotifier implements Notifier {
<span class="fc" id="L38"> Log log = LogFactory.getLog(this.getClass());</span>
<span class="fc" id="L39"> UDDISubscriptionListenerPortType subscriptionListenerPort = null;</span>
public RMINotifier(BindingTemplate bindingTemplate) throws IOException, URISyntaxException, NotBoundException {
<span class="fc" id="L42"> super();</span>
<span class="pc bpc" id="L43" title="1 of 2 branches missed."> if (!AccessPointType.END_POINT.toString().equalsIgnoreCase(bindingTemplate.getAccessPointType())) {</span>
<span class="nc" id="L44"> log.error(&quot;rmi enpoints only support AccessPointType &quot; + AccessPointType.END_POINT);</span>
}
<span class="fc" id="L46"> String accessPointUrl = bindingTemplate.getAccessPointUrl().toLowerCase();</span>
<span class="pc bpc" id="L47" title="1 of 2 branches missed."> if (!accessPointUrl.startsWith(&quot;rmi&quot;)) {</span>
<span class="nc" id="L48"> log.warn(&quot;rmi accessPointUrl for bindingTemplate &quot; + bindingTemplate.getEntityKey() + </span>
&quot; should start with 'rmi'&quot;);
}
<span class="fc" id="L51"> URI accessPointURI = new URI(accessPointUrl);</span>
<span class="fc" id="L52"> String host = accessPointURI.getHost();</span>
<span class="fc" id="L53"> int port = accessPointURI.getPort();</span>
<span class="fc" id="L54"> String path = accessPointURI.getPath();</span>
<span class="fc" id="L55"> log.debug(&quot;Connecting to &quot; + host + &quot;:&quot; + port);</span>
<span class="fc" id="L56"> Registry registry = LocateRegistry.getRegistry(host, port);</span>
<span class="fc" id="L57"> subscriptionListenerPort = (UDDISubscriptionListenerPortType) registry.lookup(path);</span>
<span class="fc" id="L58"> }</span>
public DispositionReport notifySubscriptionListener(NotifySubscriptionListener body) throws DispositionReportFaultMessage, RemoteException {
<span class="fc" id="L61"> return subscriptionListenerPort.notifySubscriptionListener(body);</span>
}
}
</pre><div class="footer"><span class="right">Created with <a href="http://www.jacoco.org/jacoco">JaCoCo</a> 0.7.9.201702052155</span></div></body></html>