This project has retired. For details please refer to its Attic page.
TckSubscriptionListenerRMI xref
View Javadoc
1   package org.apache.juddi.v3.tck;
2   
3   /*
4    * Copyright 2001-2009 The Apache Software Foundation.
5    * 
6    * Licensed under the Apache License, Version 2.0 (the "License");
7    * you may not use this file except in compliance with the License.
8    * You may obtain a copy of the License at
9    *      http://www.apache.org/licenses/LICENSE-2.0
10   * 
11   * Unless required by applicable law or agreed to in writing, software
12   * distributed under the License is distributed on an "AS IS" BASIS,
13   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14   * See the License for the specific language governing permissions and
15   * limitations under the License.
16   */
17  import org.uddi.v3_service.UDDIPublicationPortType;
18  import org.uddi.v3_service.UDDISubscriptionPortType;
19  
20  
21  /**
22   * @author <a href="mailto:tcunning@apache.org">Tom Cunningham</a>
23   */
24  public class TckSubscriptionListenerRMI extends TckSubscriptionListener
25  {
26          
27  	public final String LISTENER_SERVICE_XML_RMI   = "uddi_data/subscriptionnotifier/listenerServiceRMI.xml";
28      public final String LISTENER_SERVICE_KEY_RMI   = "uddi:uddi.joepublisher.com:listeneronermi";
29  
30  	/** note that the subscription1.xml contains the binding template for the UDDI server to call back into */
31  	public final static String SUBSCRIPTION_XML_RMI = "uddi_data/subscriptionnotifier/subscription1RMI.xml";
32          public final static String SUBSCRIPTION_XML2_RMI = "uddi_data/subscriptionnotifier/subscription2RMI.xml";
33          public final static String SUBSCRIPTION_XML3_RMI = "uddi_data/subscriptionnotifier/subscription3RMI.xml";
34      public final static String SUBSCRIPTION_KEY_RMI = "uddi:uddi.joepublisher.com:subscriptiononermi";
35      
36      public TckSubscriptionListenerRMI(
37  			UDDISubscriptionPortType subscription,
38  			UDDIPublicationPortType publication) {
39      	
40  		super(subscription, publication);
41  //		this.LISTENER_SERVICE_KEY = LISTENER_SERVICE_KEY_RMI;
42  //    	this.LISTENER_HTTP_SERVICE_XML = LISTENER_SERVICE_XML_RMI;
43  //    	this.SUBSCRIPTION_KEY     = SUBSCRIPTION_KEY_RMI;
44   //   	this.SUBSCRIPTION_XML     = SUBSCRIPTION_XML_RMI;
45      	
46  	}
47  	
48  }