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.response;
17  
18  import org.apache.juddi.datatype.RegistryObject;
19  
20  /***
21   * @author Steve Viens (sviens@apache.org)
22   * @author Anou Mana (anou_mana@users.sourceforge.net)
23   */
24  public class RegisteredInfo implements RegistryObject
25  {
26    String generic;
27    String operator;
28    TModelInfos tModelInfos;
29    BusinessInfos businessInfos;
30  
31    /***
32     *
33     */
34    public RegisteredInfo()
35    {
36    }
37  
38    /***
39     *
40     * @param genericValue
41     */
42    public void setGeneric(String genericValue)
43    {
44      this.generic = genericValue;
45    }
46  
47    /***
48     *
49     * @return String UDDI generic value.
50     */
51    public String getGeneric()
52    {
53      return this.generic;
54    }
55  
56    /***
57     *
58     */
59    public void setOperator(String operator)
60    {
61      this.operator = operator;
62    }
63  
64    /***
65     *
66     */
67    public void setTModelInfos(TModelInfos infos)
68    {
69      this.tModelInfos = infos;
70    }
71  
72    /***
73     *
74     */
75    public TModelInfos getTModelInfos()
76    {
77      return this.tModelInfos;
78    }
79  
80    /***
81     *
82     */
83    public void setBusinessInfos(BusinessInfos infos)
84    {
85      this.businessInfos = infos;
86    }
87  
88    /***
89     *
90     */
91    public BusinessInfos getBusinessInfos()
92    {
93      return this.businessInfos;
94    }
95  
96    /***
97     *
98     */
99    public String getOperator()
100   {
101      return this.operator;
102   }
103 }