KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > websvc > api > jaxws > project > config > Endpoints


1 /*
2  * The contents of this file are subject to the terms of the Common Development
3  * and Distribution License (the License). You may not use this file except in
4  * compliance with the License.
5  *
6  * You can obtain a copy of the License at http://www.netbeans.org/cddl.html
7  * or http://www.netbeans.org/cddl.txt.
8  *
9  * When distributing Covered Code, include this CDDL Header Notice in each file
10  * and include the License file at http://www.netbeans.org/cddl.txt.
11  * If applicable, add the following below the CDDL Header, with the fields
12  * enclosed by brackets [] replaced by your own identifying information:
13  * "Portions Copyrighted [year] [name of copyright owner]"
14  *
15  * The Original Software is NetBeans. The Initial Developer of the Original
16  * Software is Sun Microsystems, Inc. Portions Copyright 1997-2006 Sun
17  * Microsystems, Inc. All Rights Reserved.
18  */

19 /*
20  * Endpoints.java
21  *
22  * Created on March 19, 2006, 8:54 AM
23  *
24  * To change this template, choose Tools | Template Manager
25  * and open the template in the editor.
26  */

27
28 package org.netbeans.modules.websvc.api.jaxws.project.config;
29
30 import java.beans.PropertyChangeListener JavaDoc;
31 import java.io.OutputStream JavaDoc;
32 import org.netbeans.modules.schema2beans.BaseBean;
33 /**
34  *
35  * @author Roderico Cruz
36  */

37 public class Endpoints {
38      private org.netbeans.modules.websvc.jaxwsmodel.endpoints_config1_0.Endpoints endpoints;
39     /** Creates a new instance of HandlerChains */
40     public Endpoints(org.netbeans.modules.websvc.jaxwsmodel.endpoints_config1_0.Endpoints endpoints) {
41         this.endpoints = endpoints;
42     }
43     
44     public Endpoint[] getEndpoints() {
45         org.netbeans.modules.websvc.jaxwsmodel.endpoints_config1_0.Endpoint[] endpointArray =
46                 endpoints.getEndpoint();
47         Endpoint[] newEndpoints = new Endpoint[endpointArray.length];
48         for (int i=0;i<endpointArray.length;i++) {
49             newEndpoints[i]=new Endpoint(endpointArray[i]);
50         }
51         return newEndpoints;
52     }
53     
54     public Endpoint newEndpoint() {
55         org.netbeans.modules.websvc.jaxwsmodel.endpoints_config1_0.Endpoint endpoint =
56                 endpoints.newEndpoint();
57         return new Endpoint(endpoint);
58     }
59     
60     public void addEnpoint(Endpoint endpoint) {
61         endpoints.addEndpoint((org.netbeans.modules.websvc.jaxwsmodel.endpoints_config1_0.Endpoint)endpoint.getOriginal());
62     }
63     
64     public void removeEndpoint(Endpoint endpoint) {
65         endpoints.removeEndpoint((org.netbeans.modules.websvc.jaxwsmodel.endpoints_config1_0.Endpoint)endpoint.getOriginal());
66     }
67     
68     public Endpoint findEndpointByName(String JavaDoc endpointName) {
69         Endpoint[] endpoints = getEndpoints();
70         for (int i=0;i<endpoints.length;i++) {
71             Endpoint endpoint = endpoints[i];
72             if(endpointName.equals(endpoint.getEndpointName())){
73                 return endpoint;
74             }
75         }
76         return null;
77     }
78     
79
80     public void addPropertyChangeListener(PropertyChangeListener JavaDoc l) {
81         endpoints.addPropertyChangeListener(l);
82     }
83     
84     public void removePropertyChangeListener(PropertyChangeListener JavaDoc l) {
85         endpoints.removePropertyChangeListener(l);
86     }
87     
88     public void merge(Endpoints newEndpoints) {
89         if (newEndpoints.endpoints!=null)
90             endpoints.merge(newEndpoints.endpoints,BaseBean.MERGE_UPDATE);
91     }
92     
93     public void write(OutputStream JavaDoc os) throws java.io.IOException JavaDoc {
94         endpoints.write(os);
95     }
96     
97 }
98
Popular Tags