KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > juddi > datatype > request > DeleteService


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 JavaDoc;
19
20 import org.apache.juddi.datatype.RegistryObject;
21 import org.apache.juddi.datatype.ServiceKey;
22
23 /**
24  * "Used to delete an existing businessService from the businessServices
25  * collection that is part of a specified businessEntity."
26  *
27  * @author Steve Viens (sviens@apache.org)
28  */

29 public class DeleteService implements RegistryObject,Publish
30 {
31   String JavaDoc generic;
32   AuthInfo authInfo;
33   Vector JavaDoc serviceKeyVector;
34
35   /**
36    *
37    */

38   public DeleteService()
39   {
40   }
41
42   /**
43    *
44    */

45   public DeleteService(AuthInfo authInfo,String JavaDoc serviceKey)
46   {
47     setAuthInfo(authInfo);
48     addServiceKey(serviceKey);
49   }
50
51   /**
52    *
53    */

54   public DeleteService(AuthInfo authInfo,Vector JavaDoc serviceKeys)
55   {
56     setAuthInfo(authInfo);
57     setServiceKeyVector(serviceKeys);
58   }
59
60   /**
61    *
62    * @param genericValue
63    */

64   public void setGeneric(String JavaDoc genericValue)
65   {
66     this.generic = genericValue;
67   }
68
69   /**
70    *
71    * @return String UDDI request's generic value.
72    */

73   public String JavaDoc getGeneric()
74   {
75     return this.generic;
76   }
77
78   /**
79    *
80    */

81   public void addServiceKey(ServiceKey serviceKey)
82   {
83     if ((serviceKey != null) && (serviceKey.getValue() != null))
84       addServiceKey(serviceKey.getValue());
85   }
86
87   /**
88    *
89    */

90   public void addServiceKey(String JavaDoc serviceKey)
91   {
92     if (this.serviceKeyVector == null)
93       this.serviceKeyVector = new Vector JavaDoc();
94     this.serviceKeyVector.add(serviceKey);
95   }
96
97   /**
98    *
99    */

100   public void setServiceKeyVector(Vector JavaDoc serviceKeys)
101   {
102     this.serviceKeyVector = serviceKeys;
103   }
104
105   /**
106    *
107    */

108   public Vector JavaDoc getServiceKeyVector()
109   {
110     return this.serviceKeyVector;
111   }
112
113   /**
114    *
115    */

116   public void setAuthInfo(AuthInfo authInfo)
117   {
118     this.authInfo = authInfo;
119   }
120
121   /**
122    *
123    */

124   public AuthInfo getAuthInfo()
125   {
126     return this.authInfo;
127   }
128 }
Popular Tags