View Javadoc

1   /*
2    * Copyright 2001-2004 The Apache Software Foundation.
3    * 
4    * Licensed under the Apache License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    * 
8    *      http://www.apache.org/licenses/LICENSE-2.0
9    * 
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.apache.juddi.datatype.request;
17  
18  import java.util.Vector;
19  
20  import org.apache.juddi.datatype.RegistryObject;
21  import org.apache.juddi.datatype.service.BusinessService;
22  
23  /***
24   * "Used to register or update complete information about a businessService
25   *  exposed by a specified businessEntity."
26   *
27   * @author Steve Viens (sviens@apache.org)
28   */
29  public class SaveService implements RegistryObject,Publish
30  {
31    String generic;
32    AuthInfo authInfo;
33    Vector serviceVector;
34  
35    /***
36     *
37     */
38    public SaveService()
39    {
40    }
41  
42    /***
43     *
44     */
45    public SaveService(AuthInfo info, BusinessService service)
46    {
47      this.authInfo = info;
48      addBusinessService(service);
49    }
50  
51    /***
52     *
53     */
54    public SaveService(AuthInfo info,Vector services)
55    {
56      this.authInfo = info;
57      this.serviceVector = services;
58    }
59  
60    /***
61     *
62     * @param genericValue
63     */
64    public void setGeneric(String genericValue)
65    {
66      this.generic = genericValue;
67    }
68  
69    /***
70     *
71     * @return String UDDI request's generic value.
72     */
73    public String getGeneric()
74    {
75      return this.generic;
76    }
77  
78    /***
79     *
80     */
81    public void setAuthInfo(AuthInfo info)
82    {
83      this.authInfo = info;
84    }
85  
86    /***
87     *
88     */
89    public AuthInfo getAuthInfo()
90    {
91      return this.authInfo;
92    }
93  
94    /***
95     *
96     */
97    public void addBusinessService(BusinessService businessService)
98    {
99      if (this.serviceVector == null)
100       this.serviceVector = new Vector();
101     this.serviceVector.add(businessService);
102   }
103 
104   /***
105    *
106    */
107   public void setServiceVector(Vector services)
108   {
109     this.serviceVector = services;
110   }
111 
112   /***
113    *
114    */
115   public Vector getBusinessServiceVector()
116   {
117     return this.serviceVector;
118   }
119 }