JAL-2189 source formatting
[jalview.git] / src / jalview / fts / core / FTSRestRequest.java
1 /*
2  * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3  * Copyright (C) $$Year-Rel$$ The Jalview Authors
4  * 
5  * This file is part of Jalview.
6  * 
7  * Jalview is free software: you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License 
9  * as published by the Free Software Foundation, either version 3
10  * of the License, or (at your option) any later version.
11  *  
12  * Jalview is distributed in the hope that it will be useful, but 
13  * WITHOUT ANY WARRANTY; without even the implied warranty 
14  * of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
15  * PURPOSE.  See the GNU General Public License for more details.
16  * 
17  * You should have received a copy of the GNU General Public License
18  * along with Jalview.  If not, see <http://www.gnu.org/licenses/>.
19  * The Jalview Authors are detailed in the 'AUTHORS' file.
20  */
21
22 package jalview.fts.core;
23
24 import jalview.bin.Cache;
25 import jalview.datamodel.SequenceI;
26 import jalview.fts.api.FTSDataColumnI;
27
28 import java.util.Collection;
29
30 /**
31  * Represents the FTS request to be consumed by the FTSRestClient
32  * 
33  * @author tcnofoegbu
34  *
35  */
36 public class FTSRestRequest
37 {
38   private String fieldToSearchBy;
39
40   private String searchTerm;
41
42   private String fieldToSortBy;
43
44   private SequenceI associatedSequence;
45
46   private boolean allowEmptySequence;
47
48   private boolean allowUnpublishedEntries = Cache.getDefault(
49           "ALLOW_UNPUBLISHED_PDB_QUERYING", false);
50
51   private boolean facet;
52
53   private String facetPivot;
54
55   private int facetPivotMinCount;
56
57   private int responseSize;
58
59   private int offSet;
60
61   private boolean isSortAscending;
62
63   private Collection<FTSDataColumnI> wantedFields;
64
65   public String getFieldToSearchBy()
66   {
67     return fieldToSearchBy;
68   }
69
70   public void setFieldToSearchBy(String fieldToSearchBy)
71   {
72     this.fieldToSearchBy = fieldToSearchBy;
73   }
74
75   public String getSearchTerm()
76   {
77     return searchTerm;
78   }
79
80   public void setSearchTerm(String searchTerm)
81   {
82     this.searchTerm = searchTerm;
83   }
84
85   public boolean isAllowEmptySeq()
86   {
87     return allowEmptySequence;
88   }
89
90   public void setAllowEmptySeq(boolean allowEmptySeq)
91   {
92     this.allowEmptySequence = allowEmptySeq;
93   }
94
95   public int getResponseSize()
96   {
97     return responseSize;
98   }
99
100   public void setResponseSize(int responseSize)
101   {
102     this.responseSize = responseSize;
103   }
104
105   public Collection<FTSDataColumnI> getWantedFields()
106   {
107     return wantedFields;
108   }
109
110   public void setWantedFields(Collection<FTSDataColumnI> wantedFields)
111   {
112     this.wantedFields = wantedFields;
113   }
114
115   public String getFieldToSortBy()
116   {
117     return fieldToSortBy;
118   }
119
120   public void setFieldToSortBy(String fieldToSortBy, boolean isSortAscending)
121   {
122     this.fieldToSortBy = fieldToSortBy;
123     this.isSortAscending = isSortAscending;
124   }
125
126   public boolean isAscending()
127   {
128     return isSortAscending;
129   }
130
131   public SequenceI getAssociatedSequence()
132   {
133     return associatedSequence;
134   }
135
136   public void setAssociatedSequence(SequenceI associatedSequence)
137   {
138     this.associatedSequence = associatedSequence;
139   }
140
141   public boolean isAllowUnpublishedEntries()
142   {
143     return allowUnpublishedEntries;
144   }
145
146   public void setAllowUnpublishedEntries(boolean allowUnpublishedEntries)
147   {
148     this.allowUnpublishedEntries = allowUnpublishedEntries;
149   }
150
151   public boolean isFacet()
152   {
153     return facet;
154   }
155
156   public void setFacet(boolean facet)
157   {
158     this.facet = facet;
159   }
160
161   public String getFacetPivot()
162   {
163     return facetPivot;
164   }
165
166   public void setFacetPivot(String facetPivot)
167   {
168     this.facetPivot = facetPivot;
169   }
170
171   public int getFacetPivotMinCount()
172   {
173     return facetPivotMinCount;
174   }
175
176   public void setFacetPivotMinCount(int facetPivotMinCount)
177   {
178     this.facetPivotMinCount = facetPivotMinCount;
179   }
180
181   public int getOffSet()
182   {
183     return offSet;
184   }
185
186   public void setOffSet(int offSet)
187   {
188     this.offSet = offSet;
189   }
190 }