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 org.apache.juddi.datatype.RegistryObject;
19  
20  /***
21   * @author Steve Viens (sviens@apache.org)
22   */
23  public class FindQualifier implements RegistryObject
24  {
25    /***
26     * Constant ...
27     */
28    public static final String EXACT_NAME_MATCH = "exactNameMatch";
29  
30  
31    /***
32     * Constant ...
33     */
34    public static final String CASE_SENSITIVE_MATCH = "caseSensitiveMatch";
35  
36    /***
37     * Constant ...
38     */
39    public static final String OR_ALL_KEYS = "orAllKeys";
40  
41    /***
42     * Constant ...
43     */
44    public static final String OR_LIKE_KEYS = "orLikeKeys";
45  
46    /***
47     * Constant ...
48     */
49    public static final String AND_ALL_KEYS = "andAllKeys";
50  
51    /***
52     * Constant ...
53     */
54    public static final String SORT_BY_NAME_ASC = "sortByNameAsc";
55  
56    /***
57     * Constant ...
58     */
59    public static final String SORT_BY_NAME_DESC = "sortByNameDesc";
60  
61    /***
62     * Constant ...
63     */
64    public static final String SORT_BY_DATE_ASC = "sortByDateAsc";
65  
66    /***
67     * Constant ...
68     */
69    public static final String SORT_BY_DATE_DESC = "sortByDateDesc";
70  
71    /***
72     * Constant ...
73     */
74    public static final String SERVICE_SUBSET = "serviceSubset";
75  
76    /***
77     * Constant ...
78     */
79    public static final String COMBINE_CATEGORY_BAGS = "combineCategoryBags";
80  
81    String value;
82  
83    /***
84     *
85     */
86    public FindQualifier()
87    {
88    }
89  
90    /***
91     *
92     */
93    public FindQualifier(String newValue)
94    {
95      setValue(newValue);
96    }
97  
98    /***
99     *
100    */
101   public void setValue (String newValue)
102   {
103     this.value = newValue;
104   }
105 
106   /***
107    *
108    */
109   public String getValue()
110   {
111     return this.value;
112   }
113 }