01: /**
02: * Licensed to the Apache Software Foundation (ASF) under one
03: * or more contributor license agreements. See the NOTICE file
04: * distributed with this work for additional information
05: * regarding copyright ownership. The ASF licenses this file
06: * to you under the Apache License, Version 2.0 (the
07: * "License"); you may not use this file except in compliance
08: * with the License. You may obtain a copy of the License at
09: *
10: * http://www.apache.org/licenses/LICENSE-2.0
11: *
12: * Unless required by applicable law or agreed to in writing,
13: * software distributed under the License is distributed on an
14: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15: * KIND, either express or implied. See the License for the
16: * specific language governing permissions and limitations
17: * under the License.
18: */
19:
20: /**
21: * Please modify this class to meet your needs
22: * This class is not complete
23: */package org.apache.locator_test;
24:
25: import java.util.ArrayList;
26: import java.util.List;
27: import java.util.logging.Logger;
28:
29: import org.apache.locator.EndpointNotExistFault;
30: import org.apache.locator.LocatorService;
31: import org.apache.locator.types.EndpointIdentity;
32: import org.apache.locator.types.ListEndpointsResponse.Endpoint;
33: import org.apache.locator.types.QueryEndpoints;
34: import org.apache.locator.types.QueryEndpointsResponse;
35:
36: /**
37: * This class was generated by the CXF 2.0-incubator-M1-SNAPSHOT Thu Nov 02
38: * 16:39:27 CST 2006 Generated source version: 2.0-incubator-M1-SNAPSHOT
39: */
40:
41: @javax.jws.WebService(name="LocatorService",serviceName="LocatorService",portName="LocatorServicePort",targetNamespace="http://apache.org/locator",endpointInterface="org.apache.locator.LocatorService",wsdlLocation="testutils/locator.wsdl")
42: public class LocatorServiceImpl implements LocatorService {
43:
44: static final Logger LOG = Logger.getLogger(LocatorServiceImpl.class
45: .getName());
46:
47: public void registerPeerManager(
48: org.apache.cxf.ws.addressing.EndpointReferenceType peerManager,
49: javax.xml.ws.Holder<org.apache.cxf.ws.addressing.EndpointReferenceType> peerManagerReference,
50: javax.xml.ws.Holder<java.lang.String> nodeId) {
51: LOG.info("Executing operation registerPeerManager");
52: }
53:
54: public void deregisterPeerManager(java.lang.String nodeId) {
55: LOG.info("Executing operation deregisterPeerManager");
56: }
57:
58: public void registerEndpoint(
59: EndpointIdentity endpointId,
60: org.apache.cxf.ws.addressing.EndpointReferenceType endpointReference) {
61: LOG.info("Executing operation registerEndpoint");
62: }
63:
64: public void deregisterEndpoint(
65: EndpointIdentity endpointId,
66: org.apache.cxf.ws.addressing.EndpointReferenceType endpointReference) {
67: LOG.info("Executing operation deregisterEndpoint");
68: }
69:
70: public org.apache.cxf.ws.addressing.EndpointReferenceType lookupEndpoint(
71: javax.xml.namespace.QName serviceQname)
72: throws EndpointNotExistFault {
73: LOG.info("Executing operation lookupEndpoint");
74: return new org.apache.cxf.ws.addressing.EndpointReferenceType();
75: // throw new EndpointNotExistFault("EndpointNotExistFault...");
76: }
77:
78: public java.util.List<Endpoint> listEndpoints() {
79: LOG.info("Executing operation listEndpoints");
80: return new ArrayList<Endpoint>();
81: }
82:
83: public QueryEndpointsResponse queryEndpoints(
84: QueryEndpoints parameters) {
85: LOG.info("Executing operation queryEndpoints");
86: return null;
87: }
88:
89: }
|