Return-Path: Delivered-To: apmail-incubator-beehive-dev-archive@www.apache.org Received: (qmail 41104 invoked from network); 23 Sep 2004 17:07:29 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 23 Sep 2004 17:07:29 -0000 Received: (qmail 52272 invoked by uid 500); 23 Sep 2004 17:09:39 -0000 Delivered-To: apmail-incubator-beehive-dev-archive@incubator.apache.org Received: (qmail 52227 invoked by uid 500); 23 Sep 2004 17:09:38 -0000 Mailing-List: contact beehive-dev-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Beehive Developers" Delivered-To: mailing list beehive-dev@incubator.apache.org Received: (qmail 52203 invoked by uid 99); 23 Sep 2004 17:09:38 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: local policy) Received: from [210.81.151.143] (HELO dns10.mail.yahoo.co.jp) (210.81.151.143) by apache.org (qpsmtpd/0.28) with SMTP; Thu, 23 Sep 2004 10:09:36 -0700 Received: from unknown (HELO ?192.168.1.21?) (219.198.156.25 with poptime) by dns10.mail.yahoo.co.jp with SMTP; 23 Sep 2004 17:09:34 -0000 X-Apparently-From: Date: Fri, 24 Sep 2004 02:13:24 +0900 From: wolfgang127us@yahoo.co.jp To: "Beehive Developers" Subject: Re: checkin request In-Reply-To: <20040924020124.75B9.WOLFGANG127US@yahoo.co.jp> References: <20040924020124.75B9.WOLFGANG127US@yahoo.co.jp> Message-Id: <20040924021041.75BD.WOLFGANG127US@yahoo.co.jp> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Mailer: Becky! ver. 2.05.06 X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Hi there oops, I've sent a wrong patch of WebServiceTYPEMetadata. Here is the correct one for WebServiceTYPEMetadata.java Index: src/runtime/org/apache/beehive/wsm/jsr181/model/WebServiceTYPEMetadata.java =================================================================== --- src/runtime/org/apache/beehive/wsm/jsr181/model/WebServiceTYPEMetadata.java (revision 47104) +++ src/runtime/org/apache/beehive/wsm/jsr181/model/WebServiceTYPEMetadata.java (working copy) @@ -60,6 +60,7 @@ private String wsServiceName; private String wsWsdlLocation; private String wsTargetNamespace; + private String wsEndpointInterface; private Collection methods = new ArrayList(); private SOAPBindingInfo soapBinding; private String hcFileName; @@ -157,6 +158,7 @@ setWsServiceName(annotation.serviceName()); setWsTargetNamespace(annotation.targetNamespace()); setWsWsdlLocation(annotation.wsdlLocation()); + setWsEndpointInterface(annotation.endpointInterface()); } // name @@ -550,6 +552,21 @@ } /** + * @return Returns the wsEndpointInterface. + */ + public String getWsEndpointInterface() { + return wsEndpointInterface; + } + + /** + * @param wsEndpointInterface + * The wsEndpointInterface to set. + */ + public void setWsEndpointInterface(String wsEndpointInterface) { + this.wsEndpointInterface = wsEndpointInterface; + } + + /** * @return Returns the wsWsdlLocation. */ public String getWsWsdlLocation() { Thanks in advance. Wolfgang