You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@juddi.apache.org by jf...@apache.org on 2008/09/04 21:31:50 UTC

svn commit: r692206 - in /webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache: ./ juddi/ juddi/ws/ juddi/ws/impl/

Author: jfaath
Date: Thu Sep  4 12:31:50 2008
New Revision: 692206

URL: http://svn.apache.org/viewvc?rev=692206&view=rev
Log:
Created the service endpoint implementation stubs.

Added:
    webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/
    webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/
    webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/
    webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/
    webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDICustodyTransferImpl.java   (with props)
    webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDIInquiryImpl.java   (with props)
    webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDIPublicationImpl.java   (with props)
    webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDIReplicationImpl.java   (with props)
    webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDISecurityImpl.java   (with props)
    webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDISubscriptionImpl.java   (with props)
    webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDISubscriptionListenerImpl.java   (with props)
    webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDIValueSetCachingImpl.java   (with props)
    webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDIValueSetValidationImpl.java   (with props)

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDICustodyTransferImpl.java
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDICustodyTransferImpl.java?rev=692206&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDICustodyTransferImpl.java (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDICustodyTransferImpl.java Thu Sep  4 12:31:50 2008
@@ -0,0 +1,56 @@
+/*
+ * 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.ws.impl;
+
+import javax.jws.WebService;
+import javax.xml.datatype.XMLGregorianCalendar;
+import javax.xml.ws.Holder;
+
+import org.uddi.custody_v3.DiscardTransferToken;
+import org.uddi.custody_v3.KeyBag;
+import org.uddi.custody_v3.TransferEntities;
+import org.uddi.v3_service.DispositionReportFaultMessage;
+import org.uddi.v3_service.UDDICustodyTransferPortType;
+
+@WebService(serviceName="UDDICustodyTransferService", 
+			endpointInterface="org.uddi.v3_service.UDDICustodyTransferPortType")
+public class UDDICustodyTransferImpl implements UDDICustodyTransferPortType {
+
+	@Override
+	public void discardTransferToken(DiscardTransferToken body)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+
+	}
+
+	@Override
+	public void getTransferToken(String authInfo, KeyBag keyBag,
+			Holder<String> nodeID, Holder<XMLGregorianCalendar> expirationTime,
+			Holder<byte[]> opaqueToken) throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+
+	}
+
+	@Override
+	public void transferEntities(TransferEntities body)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+
+	}
+
+}

Propchange: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDICustodyTransferImpl.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDIInquiryImpl.java
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDIInquiryImpl.java?rev=692206&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDIInquiryImpl.java (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDIInquiryImpl.java Thu Sep  4 12:31:50 2008
@@ -0,0 +1,118 @@
+/*
+ * 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.ws.impl;
+
+import javax.jws.WebService;
+
+import org.uddi.api_v3.BindingDetail;
+import org.uddi.api_v3.BusinessDetail;
+import org.uddi.api_v3.BusinessList;
+import org.uddi.api_v3.FindBinding;
+import org.uddi.api_v3.FindBusiness;
+import org.uddi.api_v3.FindRelatedBusinesses;
+import org.uddi.api_v3.FindService;
+import org.uddi.api_v3.FindTModel;
+import org.uddi.api_v3.GetBindingDetail;
+import org.uddi.api_v3.GetBusinessDetail;
+import org.uddi.api_v3.GetOperationalInfo;
+import org.uddi.api_v3.GetServiceDetail;
+import org.uddi.api_v3.GetTModelDetail;
+import org.uddi.api_v3.OperationalInfos;
+import org.uddi.api_v3.RelatedBusinessesList;
+import org.uddi.api_v3.ServiceDetail;
+import org.uddi.api_v3.ServiceList;
+import org.uddi.api_v3.TModelDetail;
+import org.uddi.api_v3.TModelList;
+import org.uddi.v3_service.DispositionReportFaultMessage;
+import org.uddi.v3_service.UDDIInquiryPortType;
+
+@WebService(serviceName="UDDIInquiryService", 
+			endpointInterface="org.uddi.v3_service.UDDIInquiryPortType")
+public class UDDIInquiryImpl implements UDDIInquiryPortType {
+
+	@Override
+	public BindingDetail findBinding(FindBinding body)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	@Override
+	public BusinessList findBusiness(FindBusiness body)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	@Override
+	public RelatedBusinessesList findRelatedBusinesses(
+			FindRelatedBusinesses body) throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	@Override
+	public ServiceList findService(FindService body)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	@Override
+	public TModelList findTModel(FindTModel body)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	@Override
+	public BindingDetail getBindingDetail(GetBindingDetail body)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	@Override
+	public BusinessDetail getBusinessDetail(GetBusinessDetail body)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	@Override
+	public OperationalInfos getOperationalInfo(GetOperationalInfo body)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	@Override
+	public ServiceDetail getServiceDetail(GetServiceDetail body)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	@Override
+	public TModelDetail getTModelDetail(GetTModelDetail body)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+}

Propchange: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDIInquiryImpl.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDIPublicationImpl.java
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDIPublicationImpl.java?rev=692206&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDIPublicationImpl.java (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDIPublicationImpl.java Thu Sep  4 12:31:50 2008
@@ -0,0 +1,151 @@
+/*
+ * 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.ws.impl;
+
+import java.util.List;
+
+import javax.jws.WebService;
+import javax.xml.ws.Holder;
+
+import org.uddi.api_v3.AddPublisherAssertions;
+import org.uddi.api_v3.AssertionStatusItem;
+import org.uddi.api_v3.BindingDetail;
+import org.uddi.api_v3.BusinessDetail;
+import org.uddi.api_v3.CompletionStatus;
+import org.uddi.api_v3.DeleteBinding;
+import org.uddi.api_v3.DeleteBusiness;
+import org.uddi.api_v3.DeletePublisherAssertions;
+import org.uddi.api_v3.DeleteService;
+import org.uddi.api_v3.DeleteTModel;
+import org.uddi.api_v3.GetRegisteredInfo;
+import org.uddi.api_v3.PublisherAssertion;
+import org.uddi.api_v3.RegisteredInfo;
+import org.uddi.api_v3.SaveBinding;
+import org.uddi.api_v3.SaveBusiness;
+import org.uddi.api_v3.SaveService;
+import org.uddi.api_v3.SaveTModel;
+import org.uddi.api_v3.ServiceDetail;
+import org.uddi.api_v3.TModelDetail;
+import org.uddi.v3_service.DispositionReportFaultMessage;
+import org.uddi.v3_service.UDDIPublicationPortType;
+
+@WebService(serviceName="UDDIPublicationService", 
+			endpointInterface="org.uddi.v3_service.UDDIPublicationPortType")
+public class UDDIPublicationImpl implements UDDIPublicationPortType {
+
+	@Override
+	public void addPublisherAssertions(AddPublisherAssertions body)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+
+	}
+
+	@Override
+	public void deleteBinding(DeleteBinding body)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+
+	}
+
+	@Override
+	public void deleteBusiness(DeleteBusiness body)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+
+	}
+
+	@Override
+	public void deletePublisherAssertions(DeletePublisherAssertions body)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+
+	}
+
+	@Override
+	public void deleteService(DeleteService body)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+
+	}
+
+	@Override
+	public void deleteTModel(DeleteTModel body)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+
+	}
+
+	@Override
+	public List<AssertionStatusItem> getAssertionStatusReport(String authInfo,
+			CompletionStatus completionStatus)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	@Override
+	public List<PublisherAssertion> getPublisherAssertions(String authInfo)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	@Override
+	public RegisteredInfo getRegisteredInfo(GetRegisteredInfo body)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	@Override
+	public BindingDetail saveBinding(SaveBinding body)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	@Override
+	public BusinessDetail saveBusiness(SaveBusiness body)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	@Override
+	public ServiceDetail saveService(SaveService body)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	@Override
+	public TModelDetail saveTModel(SaveTModel body)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	@Override
+	public void setPublisherAssertions(String authInfo,
+			Holder<List<PublisherAssertion>> publisherAssertion)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+
+	}
+
+}

Propchange: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDIPublicationImpl.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDIReplicationImpl.java
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDIReplicationImpl.java?rev=692206&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDIReplicationImpl.java (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDIReplicationImpl.java Thu Sep  4 12:31:50 2008
@@ -0,0 +1,75 @@
+/*
+ * 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.ws.impl;
+
+import java.math.BigInteger;
+import java.util.List;
+
+import javax.jws.WebService;
+
+import org.uddi.repl_v3.ChangeRecord;
+import org.uddi.repl_v3.ChangeRecordIDType;
+import org.uddi.repl_v3.DoPing;
+import org.uddi.repl_v3.HighWaterMarkVectorType;
+import org.uddi.repl_v3.NotifyChangeRecordsAvailable;
+import org.uddi.repl_v3.TransferCustody;
+import org.uddi.v3_service.DispositionReportFaultMessage;
+import org.uddi.v3_service.UDDIReplicationPortType;
+
+@WebService(serviceName="UDDIReplicationService", 
+			endpointInterface="org.uddi.v3_service.UDDIReplicationPortType")
+public class UDDIReplicationImpl implements UDDIReplicationPortType {
+
+	@Override
+	public String doPing(DoPing body) throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	@Override
+	public List<ChangeRecord> getChangeRecords(String requestingNode,
+			HighWaterMarkVectorType changesAlreadySeen,
+			BigInteger responseLimitCount,
+			HighWaterMarkVectorType responseLimitVector)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	@Override
+	public List<ChangeRecordIDType> getHighWaterMarks()
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	@Override
+	public void notifyChangeRecordsAvailable(NotifyChangeRecordsAvailable body)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+
+	}
+
+	@Override
+	public void transferCustody(TransferCustody body)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+
+	}
+
+}

Propchange: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDIReplicationImpl.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDISecurityImpl.java
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDISecurityImpl.java?rev=692206&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDISecurityImpl.java (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDISecurityImpl.java Thu Sep  4 12:31:50 2008
@@ -0,0 +1,46 @@
+/*
+ * 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.ws.impl;
+
+import javax.jws.WebService;
+
+import org.uddi.api_v3.AuthToken;
+import org.uddi.api_v3.DiscardAuthToken;
+import org.uddi.api_v3.GetAuthToken;
+import org.uddi.v3_service.DispositionReportFaultMessage;
+import org.uddi.v3_service.UDDISecurityPortType;
+
+@WebService(serviceName="UDDISecurityService", 
+			endpointInterface="org.uddi.v3_service.UDDISecurityPortType")
+public class UDDISecurityImpl implements UDDISecurityPortType {
+
+	@Override
+	public void discardAuthToken(DiscardAuthToken body)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+
+	}
+
+	@Override
+	public AuthToken getAuthToken(GetAuthToken body)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+}

Propchange: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDISecurityImpl.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDISubscriptionImpl.java
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDISubscriptionImpl.java?rev=692206&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDISubscriptionImpl.java (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDISubscriptionImpl.java Thu Sep  4 12:31:50 2008
@@ -0,0 +1,65 @@
+/*
+ * 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.ws.impl;
+
+import java.util.List;
+
+import javax.jws.WebService;
+import javax.xml.ws.Holder;
+
+import org.uddi.sub_v3.DeleteSubscription;
+import org.uddi.sub_v3.GetSubscriptionResults;
+import org.uddi.sub_v3.Subscription;
+import org.uddi.sub_v3.SubscriptionResultsList;
+import org.uddi.v3_service.DispositionReportFaultMessage;
+import org.uddi.v3_service.UDDISubscriptionPortType;
+
+@WebService(serviceName="UDDISubscriptionService", 
+			endpointInterface="org.uddi.v3_service.UDDISubscriptionPortType")
+public class UDDISubscriptionImpl implements UDDISubscriptionPortType {
+
+	@Override
+	public void deleteSubscription(DeleteSubscription body)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+
+	}
+
+	@Override
+	public SubscriptionResultsList getSubscriptionResults(
+			GetSubscriptionResults body) throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	@Override
+	public List<Subscription> getSubscriptions(String authInfo)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+	@Override
+	public void saveSubscription(String authInfo,
+			Holder<List<Subscription>> subscription)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+
+	}
+
+}

Propchange: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDISubscriptionImpl.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDISubscriptionListenerImpl.java
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDISubscriptionListenerImpl.java?rev=692206&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDISubscriptionListenerImpl.java (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDISubscriptionListenerImpl.java Thu Sep  4 12:31:50 2008
@@ -0,0 +1,40 @@
+/*
+ * 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.ws.impl;
+
+import javax.jws.WebService;
+
+import org.uddi.api_v3.DispositionReport;
+import org.uddi.subr_v3.NotifySubscriptionListener;
+import org.uddi.v3_service.DispositionReportFaultMessage;
+import org.uddi.v3_service.UDDISubscriptionListenerPortType;
+
+@WebService(serviceName="UDDISubscriptionListenerService", 
+			endpointInterface="org.uddi.v3_service.UDDISubscriptionListenerPortType")
+public class UDDISubscriptionListenerImpl implements
+		UDDISubscriptionListenerPortType {
+
+	@Override
+	public DispositionReport notifySubscriptionListener(
+			NotifySubscriptionListener body)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+}

Propchange: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDISubscriptionListenerImpl.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDIValueSetCachingImpl.java
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDIValueSetCachingImpl.java?rev=692206&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDIValueSetCachingImpl.java (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDIValueSetCachingImpl.java Thu Sep  4 12:31:50 2008
@@ -0,0 +1,41 @@
+/*
+ * 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.ws.impl;
+
+import java.util.List;
+
+import javax.jws.WebService;
+import javax.xml.ws.Holder;
+
+import org.uddi.v3_service.DispositionReportFaultMessage;
+import org.uddi.v3_service.UDDIValueSetCachingPortType;
+import org.uddi.vscache_v3.ValidValue;
+
+@WebService(serviceName="UDDIValueSetCachingService", 
+			endpointInterface="org.uddi.v3_service.UDDIValueSetCachingPortType")
+public class UDDIValueSetCachingImpl implements UDDIValueSetCachingPortType {
+
+	@Override
+	public void getAllValidValues(String authInfo, String modelKey,
+			Holder<String> chunkToken, Holder<List<ValidValue>> validValue)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+
+	}
+
+}

Propchange: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDIValueSetCachingImpl.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDIValueSetValidationImpl.java
URL: http://svn.apache.org/viewvc/webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDIValueSetValidationImpl.java?rev=692206&view=auto
==============================================================================
--- webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDIValueSetValidationImpl.java (added)
+++ webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDIValueSetValidationImpl.java Thu Sep  4 12:31:50 2008
@@ -0,0 +1,39 @@
+/*
+ * 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.ws.impl;
+
+import javax.jws.WebService;
+
+import org.uddi.api_v3.DispositionReport;
+import org.uddi.v3_service.DispositionReportFaultMessage;
+import org.uddi.v3_service.UDDIValueSetValidationPortType;
+import org.uddi.vs_v3.ValidateValues;
+
+@WebService(serviceName="UDDIValueSetValidationService", 
+			endpointInterface="org.uddi.v3_service.UDDIValueSetValidationPortType")
+public class UDDIValueSetValidationImpl implements
+		UDDIValueSetValidationPortType {
+
+	@Override
+	public DispositionReport validateValues(ValidateValues body)
+			throws DispositionReportFaultMessage {
+		// TODO Auto-generated method stub
+		return null;
+	}
+
+}

Propchange: webservices/juddi/branches/v3_trunk/uddi-ws/src/main/java/org/apache/juddi/ws/impl/UDDIValueSetValidationImpl.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain



---------------------------------------------------------------------
To unsubscribe, e-mail: juddi-cvs-unsubscribe@ws.apache.org
For additional commands, e-mail: juddi-cvs-help@ws.apache.org