Repository: juddi Updated Branches: refs/heads/master e2521334f -> 2a8bed4ef
http://git-wip-us.apache.org/repos/asf/juddi/blob/2a8bed4e/juddi-client-cli/src/main/java/org/apache/juddi/v3/client/cli/UddiSubscribe.java ---------------------------------------------------------------------- diff --git a/juddi-client-cli/src/main/java/org/apache/juddi/v3/client/cli/UddiSubscribe.java b/juddi-client-cli/src/main/java/org/apache/juddi/v3/client/cli/UddiSubscribe.java index 492dd9c..dc79d5b 100644 --- a/juddi-client-cli/src/main/java/org/apache/juddi/v3/client/cli/UddiSubscribe.java +++ b/juddi-client-cli/src/main/java/org/apache/juddi/v3/client/cli/UddiSubscribe.java @@ -36,31 +36,30 @@ import org.uddi.sub_v3.SubscriptionResultsList; * @author <a href="mailto:[email protected]">Alex O'Ree</a> */ public class UddiSubscribe implements ISubscriptionCallback { - public static void main(String args[]) throws Exception { - UddiSubscribe sp = new UddiSubscribe(); - sp.fire(); - } - - boolean callbackRecieved = false; + public static void main(String args[]) throws Exception { + UddiSubscribe sp = new UddiSubscribe(); + sp.fire(); + } + + private UDDIClerk clerk = null; private UDDIClient client = null; - String nodename = "default"; - PrintUDDI<SubscriptionResultsList> p = new PrintUDDI<SubscriptionResultsList>(); + private String nodename = "default"; + private PrintUDDI<SubscriptionResultsList> printer = new PrintUDDI<SubscriptionResultsList>(); + public UddiSubscribe() { - try { - // create a manager and read the config in the archive; - // you can use your config file name - client = new UDDIClient("META-INF/simple-publish-uddi.xml"); - clerk = client.getClerk("default"); - Transport transport = client.getTransport(); - // Now you create a reference to the UDDI API - - } catch (Exception e) { - e.printStackTrace(); - } + try { + // create a manager and read the config in the archive; + // you can use your config file name + client = new UDDIClient("META-INF/simple-publish-uddi.xml"); + clerk = client.getClerk("default"); + } catch (Exception e) { + e.printStackTrace(); + } } + public UddiSubscribe(UDDIClient client, String nodename, Transport transport) { try { // create a manager and read the config in the archive; @@ -69,13 +68,12 @@ public class UddiSubscribe implements ISubscriptionCallback { clerk = client.getClerk(nodename); this.nodename = nodename; // Now you create a reference to the UDDI API - + } catch (Exception e) { e.printStackTrace(); } } - public void fire() throws Exception { TModel createKeyGenator = UDDIClerk.createKeyGenator("somebusiness", "A test key domain SubscriptionCallbackTest1", "SubscriptionCallbackTest1"); @@ -207,12 +205,10 @@ public class UddiSubscribe implements ISubscriptionCallback { //Runtime.getRuntime().removeShutdownHook(hook); } - - @Override public void handleCallback(SubscriptionResultsList body) { System.out.println("Callback received!"); - System.out.println(p.print(body)); + System.out.println(printer.print(body)); } @Override @@ -220,5 +216,4 @@ public class UddiSubscribe implements ISubscriptionCallback { System.out.println("The endpoint was stopped!"); } - } http://git-wip-us.apache.org/repos/asf/juddi/blob/2a8bed4e/juddi-client-cli/src/main/java/org/apache/juddi/v3/client/cli/UddiSubscribeAssertionStatus.java ---------------------------------------------------------------------- diff --git a/juddi-client-cli/src/main/java/org/apache/juddi/v3/client/cli/UddiSubscribeAssertionStatus.java b/juddi-client-cli/src/main/java/org/apache/juddi/v3/client/cli/UddiSubscribeAssertionStatus.java index 882a4bc..901b458 100644 --- a/juddi-client-cli/src/main/java/org/apache/juddi/v3/client/cli/UddiSubscribeAssertionStatus.java +++ b/juddi-client-cli/src/main/java/org/apache/juddi/v3/client/cli/UddiSubscribeAssertionStatus.java @@ -37,7 +37,6 @@ import org.uddi.sub_v3.SubscriptionResultsList; public class UddiSubscribeAssertionStatus implements ISubscriptionCallback { - boolean callbackRecieved = false; private UDDIClerk clerk = null; private UDDIClient client = null; @@ -47,29 +46,23 @@ public class UddiSubscribeAssertionStatus implements ISubscriptionCallback { // you can use your config file name client = new UDDIClient("META-INF/simple-publish-uddi.xml"); clerk = client.getClerk("default"); - Transport transport = client.getTransport(); - // Now you create a reference to the UDDI API + } catch (Exception e) { e.printStackTrace(); } } public UddiSubscribeAssertionStatus(Transport transport) { - try { - // Now you create a reference to the UDDI API - - } catch (Exception e) { - e.printStackTrace(); - } + } public static void main(String args[]) throws Exception { UddiSubscribeAssertionStatus sp = new UddiSubscribeAssertionStatus(); - sp.Fire("default"); + sp.fire("default"); } - public void Fire(String nodename) throws Exception { + public void fire(String nodename) throws Exception { TModel createKeyGenator = UDDIClerk.createKeyGenator("somebusiness", "A test key domain SubscriptionCallbackTest1", "SubscriptionCallbackTest1"); http://git-wip-us.apache.org/repos/asf/juddi/blob/2a8bed4e/juddi-client-cli/src/main/java/org/apache/juddi/v3/client/cli/UddiSubscribeValidate.java ---------------------------------------------------------------------- diff --git a/juddi-client-cli/src/main/java/org/apache/juddi/v3/client/cli/UddiSubscribeValidate.java b/juddi-client-cli/src/main/java/org/apache/juddi/v3/client/cli/UddiSubscribeValidate.java index 2c26b07..d4980ef 100644 --- a/juddi-client-cli/src/main/java/org/apache/juddi/v3/client/cli/UddiSubscribeValidate.java +++ b/juddi-client-cli/src/main/java/org/apache/juddi/v3/client/cli/UddiSubscribeValidate.java @@ -37,8 +37,8 @@ import org.uddi.v3_service.UDDISubscriptionPortType; */ public class UddiSubscribeValidate { - private static UDDISecurityPortType security = null; - private static UDDISubscriptionPortType uddiSubscriptionService = null; + private UDDISecurityPortType security = null; + private UDDISubscriptionPortType uddiSubscriptionService = null; public UddiSubscribeValidate() { try { http://git-wip-us.apache.org/repos/asf/juddi/blob/2a8bed4e/juddi-client-cli/src/main/java/org/apache/juddi/v3/client/cli/UddiSubscriptionManagement.java ---------------------------------------------------------------------- diff --git a/juddi-client-cli/src/main/java/org/apache/juddi/v3/client/cli/UddiSubscriptionManagement.java b/juddi-client-cli/src/main/java/org/apache/juddi/v3/client/cli/UddiSubscriptionManagement.java index 757ea4d..a6c827d 100644 --- a/juddi-client-cli/src/main/java/org/apache/juddi/v3/client/cli/UddiSubscriptionManagement.java +++ b/juddi-client-cli/src/main/java/org/apache/juddi/v3/client/cli/UddiSubscriptionManagement.java @@ -30,7 +30,7 @@ import org.uddi.v3_service.UDDISubscriptionPortType; */ public class UddiSubscriptionManagement { - private static UDDISubscriptionPortType uddiSubscriptionService = null; + private UDDISubscriptionPortType uddiSubscriptionService = null; private UDDIClerk clerk = null; private UDDIClient client = null; http://git-wip-us.apache.org/repos/asf/juddi/blob/2a8bed4e/juddi-client-cli/src/main/java/org/apache/juddi/v3/client/cli/WadlImport.java ---------------------------------------------------------------------- diff --git a/juddi-client-cli/src/main/java/org/apache/juddi/v3/client/cli/WadlImport.java b/juddi-client-cli/src/main/java/org/apache/juddi/v3/client/cli/WadlImport.java index bf42c62..384be6a 100644 --- a/juddi-client-cli/src/main/java/org/apache/juddi/v3/client/cli/WadlImport.java +++ b/juddi-client-cli/src/main/java/org/apache/juddi/v3/client/cli/WadlImport.java @@ -54,12 +54,9 @@ import org.uddi.v3_service.UDDISecurityPortType; */ public class WadlImport { - static PrintUDDI<TModel> pTModel = new PrintUDDI<TModel>(); - static Properties properties = new Properties(); - - private static UDDISecurityPortType security = null; - private static JUDDIApiPortType juddiApi = null; - private static UDDIPublicationPortType publish = null; + private Properties properties = new Properties(); + private UDDISecurityPortType security = null; + private UDDIPublicationPortType publish = null; public void fire(String pathOrURL, String businessKey, String token, Transport transport) throws Exception { http://git-wip-us.apache.org/repos/asf/juddi/blob/2a8bed4e/juddi-client-cli/src/main/java/org/apache/juddi/v3/client/cli/WsdlImport.java ---------------------------------------------------------------------- diff --git a/juddi-client-cli/src/main/java/org/apache/juddi/v3/client/cli/WsdlImport.java b/juddi-client-cli/src/main/java/org/apache/juddi/v3/client/cli/WsdlImport.java index a4a6cf1..0879a69 100644 --- a/juddi-client-cli/src/main/java/org/apache/juddi/v3/client/cli/WsdlImport.java +++ b/juddi-client-cli/src/main/java/org/apache/juddi/v3/client/cli/WsdlImport.java @@ -54,12 +54,10 @@ import org.uddi.v3_service.UDDISecurityPortType; */ public class WsdlImport { - static PrintUDDI<TModel> pTModel = new PrintUDDI<TModel>(); - static Properties properties = new Properties(); - static String wsdlURL = null; - private static UDDISecurityPortType security = null; - private static JUDDIApiPortType juddiApi = null; - private static UDDIPublicationPortType publish = null; + private Properties properties = new Properties(); + private String wsdlURL = null; + private UDDISecurityPortType security = null; + private UDDIPublicationPortType publish = null; public static void main(String[] args) throws Exception { new WsdlImport().fire("http://svn.apache.org/repos/asf/juddi/trunk/uddi-ws/src/main/resources/juddi_api_v1.wsdl", null, null, null); http://git-wip-us.apache.org/repos/asf/juddi/blob/2a8bed4e/juddi-client-plugins/pom.xml ---------------------------------------------------------------------- diff --git a/juddi-client-plugins/pom.xml b/juddi-client-plugins/pom.xml deleted file mode 100644 index 71f01fd..0000000 --- a/juddi-client-plugins/pom.xml +++ /dev/null @@ -1,58 +0,0 @@ -<?xml version="1.0"?> -<!-- - * Copyright 2001-2009 The Apache Software Foundation. - * - * 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. - * - */ --> -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> - <modelVersion>4.0.0</modelVersion> - <parent> - <groupId>org.apache.juddi</groupId> - <artifactId>juddi-parent</artifactId> - <version>3.3.5-SNAPSHOT</version> - </parent> - <groupId>org.apache.juddi.client.plugins</groupId> - <artifactId>juddi-client-plugins</artifactId> - <version>3.3.5-SNAPSHOT</version> - <name>juddi-client-plugins</name> - <url>http://maven.apache.org</url> - <properties> - <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> - </properties> - <dependencies> - <dependency> - <groupId>junit</groupId> - <artifactId>junit</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.apache.juddi</groupId> - <artifactId>juddi-client</artifactId> - <version>${project.parent.version}</version> - </dependency> - <dependency> - <groupId>org.jgroups</groupId> - <artifactId>jgroups</artifactId> - </dependency> - <dependency> - <groupId>org.apache.cxf.services.ws-discovery</groupId> - <artifactId>cxf-services-ws-discovery-api</artifactId> - <version>${cxf.version}</version> - </dependency> - <dependency> - <groupId>javax.jmdns</groupId> - <artifactId>jmdns</artifactId> - </dependency> - </dependencies> -</project> http://git-wip-us.apache.org/repos/asf/juddi/blob/2a8bed4e/juddi-client-plugins/src/main/java/org/apache/juddi/client/plugins/JGroupsTransport.java ---------------------------------------------------------------------- diff --git a/juddi-client-plugins/src/main/java/org/apache/juddi/client/plugins/JGroupsTransport.java b/juddi-client-plugins/src/main/java/org/apache/juddi/client/plugins/JGroupsTransport.java deleted file mode 100644 index 84945fd..0000000 --- a/juddi-client-plugins/src/main/java/org/apache/juddi/client/plugins/JGroupsTransport.java +++ /dev/null @@ -1,73 +0,0 @@ -/* - * Copyright 2001-2009 The Apache Software Foundation. - * - * 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. - * - */ -package org.apache.juddi.client.plugins; - -import org.apache.juddi.v3.client.transport.Transport; -import org.apache.juddi.v3.client.transport.TransportException; -import org.apache.juddi.v3_service.JUDDIApiPortType; -import org.uddi.v3_service.UDDICustodyTransferPortType; -import org.uddi.v3_service.UDDIInquiryPortType; -import org.uddi.v3_service.UDDIPublicationPortType; -import org.uddi.v3_service.UDDISecurityPortType; -import org.uddi.v3_service.UDDISubscriptionListenerPortType; -import org.uddi.v3_service.UDDISubscriptionPortType; - -/** - * Uses JGroups to find other instances of - * - * @author <a href="mailto:[email protected]">Alex O'Ree</a> - * @since 3.2.1 - */ -public class JGroupsTransport extends Transport -{ - - @Override - public UDDIInquiryPortType getUDDIInquiryService(String endpointURL) throws TransportException { - throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. - } - - @Override - public UDDISecurityPortType getUDDISecurityService(String endpointURL) throws TransportException { - throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. - } - - @Override - public UDDIPublicationPortType getUDDIPublishService(String endpointURL) throws TransportException { - throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. - } - - @Override - public UDDISubscriptionPortType getUDDISubscriptionService(String endpointURL) throws TransportException { - throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. - } - - @Override - public UDDICustodyTransferPortType getUDDICustodyTransferService(String endpointURL) throws TransportException { - throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. - } - - @Override - public UDDISubscriptionListenerPortType getUDDISubscriptionListenerService(String endpointURL) throws TransportException { - throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. - } - - @Override - public JUDDIApiPortType getJUDDIApiService(String endpointURL) throws TransportException { - throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. - } - -} http://git-wip-us.apache.org/repos/asf/juddi/blob/2a8bed4e/juddi-client-plugins/src/main/java/org/apache/juddi/client/plugins/MulticastDNSTransport.java ---------------------------------------------------------------------- diff --git a/juddi-client-plugins/src/main/java/org/apache/juddi/client/plugins/MulticastDNSTransport.java b/juddi-client-plugins/src/main/java/org/apache/juddi/client/plugins/MulticastDNSTransport.java deleted file mode 100644 index e363168..0000000 --- a/juddi-client-plugins/src/main/java/org/apache/juddi/client/plugins/MulticastDNSTransport.java +++ /dev/null @@ -1,71 +0,0 @@ -/* - * Copyright 2014 The Apache Software Foundation. - * - * 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. - */ - -package org.apache.juddi.client.plugins; - -import org.apache.juddi.v3.client.transport.Transport; -import org.apache.juddi.v3.client.transport.TransportException; -import org.apache.juddi.v3_service.JUDDIApiPortType; -import org.uddi.v3_service.UDDICustodyTransferPortType; -import org.uddi.v3_service.UDDIInquiryPortType; -import org.uddi.v3_service.UDDIPublicationPortType; -import org.uddi.v3_service.UDDISecurityPortType; -import org.uddi.v3_service.UDDISubscriptionListenerPortType; -import org.uddi.v3_service.UDDISubscriptionPortType; - -/** - * - * @author <a href="mailto:[email protected]">Alex O'Ree</a> - * @since 3.2.1 - */ -public class MulticastDNSTransport extends Transport { - - @Override - public UDDIInquiryPortType getUDDIInquiryService(String endpointURL) throws TransportException { - throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. - } - - @Override - public UDDISecurityPortType getUDDISecurityService(String endpointURL) throws TransportException { - throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. - } - - @Override - public UDDIPublicationPortType getUDDIPublishService(String endpointURL) throws TransportException { - throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. - } - - @Override - public UDDISubscriptionPortType getUDDISubscriptionService(String endpointURL) throws TransportException { - throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. - } - - @Override - public UDDICustodyTransferPortType getUDDICustodyTransferService(String endpointURL) throws TransportException { - throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. - } - - @Override - public UDDISubscriptionListenerPortType getUDDISubscriptionListenerService(String endpointURL) throws TransportException { - throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. - } - - @Override - public JUDDIApiPortType getJUDDIApiService(String endpointURL) throws TransportException { - throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. - } - -} http://git-wip-us.apache.org/repos/asf/juddi/blob/2a8bed4e/juddi-client-plugins/src/main/java/org/apache/juddi/client/plugins/WSDiscoveryTransport.java ---------------------------------------------------------------------- diff --git a/juddi-client-plugins/src/main/java/org/apache/juddi/client/plugins/WSDiscoveryTransport.java b/juddi-client-plugins/src/main/java/org/apache/juddi/client/plugins/WSDiscoveryTransport.java deleted file mode 100644 index 4097dbe..0000000 --- a/juddi-client-plugins/src/main/java/org/apache/juddi/client/plugins/WSDiscoveryTransport.java +++ /dev/null @@ -1,71 +0,0 @@ -/* - * Copyright 2014 The Apache Software Foundation. - * - * 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. - */ - -package org.apache.juddi.client.plugins; - -import org.apache.juddi.v3.client.transport.Transport; -import org.apache.juddi.v3.client.transport.TransportException; -import org.apache.juddi.v3_service.JUDDIApiPortType; -import org.uddi.v3_service.UDDICustodyTransferPortType; -import org.uddi.v3_service.UDDIInquiryPortType; -import org.uddi.v3_service.UDDIPublicationPortType; -import org.uddi.v3_service.UDDISecurityPortType; -import org.uddi.v3_service.UDDISubscriptionListenerPortType; -import org.uddi.v3_service.UDDISubscriptionPortType; - -/** - * - * @author <a href="mailto:[email protected]">Alex O'Ree</a> - * @since 3.2.1 - */ -public class WSDiscoveryTransport extends Transport { - - @Override - public UDDIInquiryPortType getUDDIInquiryService(String endpointURL) throws TransportException { - throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. - } - - @Override - public UDDISecurityPortType getUDDISecurityService(String endpointURL) throws TransportException { - throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. - } - - @Override - public UDDIPublicationPortType getUDDIPublishService(String endpointURL) throws TransportException { - throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. - } - - @Override - public UDDISubscriptionPortType getUDDISubscriptionService(String endpointURL) throws TransportException { - throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. - } - - @Override - public UDDICustodyTransferPortType getUDDICustodyTransferService(String endpointURL) throws TransportException { - throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. - } - - @Override - public UDDISubscriptionListenerPortType getUDDISubscriptionListenerService(String endpointURL) throws TransportException { - throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. - } - - @Override - public JUDDIApiPortType getJUDDIApiService(String endpointURL) throws TransportException { - throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates. - } - -} http://git-wip-us.apache.org/repos/asf/juddi/blob/2a8bed4e/juddi-client-plugins/src/test/java/org/apache/juddi/client/plugins/AppTest.java ---------------------------------------------------------------------- diff --git a/juddi-client-plugins/src/test/java/org/apache/juddi/client/plugins/AppTest.java b/juddi-client-plugins/src/test/java/org/apache/juddi/client/plugins/AppTest.java deleted file mode 100644 index d192587..0000000 --- a/juddi-client-plugins/src/test/java/org/apache/juddi/client/plugins/AppTest.java +++ /dev/null @@ -1,54 +0,0 @@ -/* - * Copyright 2001-2008 The Apache Software Foundation. - * - * 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. - * - */ -package org.apache.juddi.client.plugins; - -import junit.framework.Test; -import junit.framework.TestCase; -import junit.framework.TestSuite; - -/** - * Unit test for simple App. - */ -public class AppTest - extends TestCase -{ - /** - * Create the test case - * - * @param testName name of the test case - */ - public AppTest( String testName ) - { - super( testName ); - } - - /** - * @return the suite of tests being tested - */ - public static Test suite() - { - return new TestSuite( AppTest.class ); - } - - /** - * Rigourous Test :-) - */ - public void testApp() - { - assertTrue( true ); - } -} http://git-wip-us.apache.org/repos/asf/juddi/blob/2a8bed4e/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index ccb600e..356eb3d 100644 --- a/pom.xml +++ b/pom.xml @@ -549,7 +549,6 @@ under the License. <module>uddi-tck-base</module> <module>juddi-client</module> <module>juddi-client-cli</module> - <module>juddi-client-plugins</module> <module>uddi-migration-tool</module> <module>juddi-core</module> <module>juddi-rest-cxf</module> --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
