Skip to content

Commit

Permalink
Make the JAR contain only autogenerated classes and one factory class…
Browse files Browse the repository at this point in the history
… for the registry client.
  • Loading branch information
misdoro committed Dec 12, 2011
1 parent 2b78b8b commit 91d44d1
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 179 deletions.
1 change: 1 addition & 0 deletions README
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Auto generated mappings for IVOA Registry interfaces, VAMDC-TAP web service, VOSI availability and capability schemas
3 changes: 1 addition & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -92,15 +92,14 @@
</executions>
<configuration>
<schemaDirectory>src/main/resources/schema</schemaDirectory>
<!--<includeSchema>**/*.xsd</includeSchema> -->
<bindingDirectory>src/main/resources/binding</bindingDirectory>
<extension>true</extension>
<forceRegenerate>true</forceRegenerate>
<args>
<arg>-XtoString</arg>
<!--<arg>-Xequals</arg> -->
<!--<arg>-XhashCode</arg> -->
<!--<arg>-Xcopyable</arg> -->
<arg>-Xcopyable</arg>
<!--<arg>-Xvalue-constructor</arg> -->
</args>
<plugins>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.vamdc.registrysearch;
package org.vamdc.registry.search;

import java.net.URL;
import java.util.logging.Logger;
Expand All @@ -13,16 +13,13 @@
* @author doronin
*
*/
public final class RegistryFactory {
public final class RegistryClientFactory {

private final static URL WSDL_LOCATION;
private final static QName SERVICE;

static {
URL url = null;
url = RegistryFactory.class.getResource("/wsdl/RegistryQueryv1_0.wsdl");
WSDL_LOCATION = url;

WSDL_LOCATION = RegistryClientFactory.class.getResource("/wsdl/RegistryQueryv1_0.wsdl");
SERVICE = new QName("http://www.ivoa.net/wsdl/RegistrySearch", "RegistryInterfaceService");
}

Expand Down
33 changes: 0 additions & 33 deletions src/test/java/org/vamdc/registrysearch/TestGetResource.java

This file was deleted.

36 changes: 0 additions & 36 deletions src/test/java/org/vamdc/registrysearch/TestRegistryFactory.java

This file was deleted.

102 changes: 0 additions & 102 deletions src/test/java/org/vamdc/registrysearch/TestRegistryXQuerySearch.java

This file was deleted.

0 comments on commit 91d44d1

Please sign in to comment.