2 * Jalview - A Sequence Alignment Editor and Viewer (Version 2.8.2)
3 * Copyright (C) 2014 The Jalview Authors
5 * This file is part of Jalview.
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.
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.
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.
22 package jalview.ws.uimodel;
24 import jalview.bin.Cache;
25 import jalview.datamodel.SequenceI;
26 import jalview.ws.dbsources.PDBRestClient.PDBDocField;
28 import java.util.Collection;
31 * Represents the PDB request to be consumed by the PDBRestClient
36 public class PDBRestRequest
38 private String fieldToSearchBy;
40 private String searchTerm;
42 private String fieldToSortBy;
44 private SequenceI associatedSequence;
46 private boolean allowEmptySequence;
48 private boolean allowUnpublishedEntries = Cache.getDefault(
49 "ALLOW_UNPUBLISHED_PDB_QUERYING", false);
51 private int responseSize;
53 private boolean isSortAscending;
55 private Collection<PDBDocField> wantedFields;
57 public String getFieldToSearchBy()
59 return fieldToSearchBy;
62 public void setFieldToSearchBy(String fieldToSearchBy)
64 this.fieldToSearchBy = fieldToSearchBy;
67 public String getSearchTerm()
72 public void setSearchTerm(String searchTerm)
74 this.searchTerm = searchTerm;
77 public boolean isAllowEmptySeq()
79 return allowEmptySequence;
82 public void setAllowEmptySeq(boolean allowEmptySeq)
84 this.allowEmptySequence = allowEmptySeq;
87 public int getResponseSize()
92 public void setResponseSize(int responseSize)
94 this.responseSize = responseSize;
97 public Collection<PDBDocField> getWantedFields()
102 public void setWantedFields(Collection<PDBDocField> wantedFields)
104 this.wantedFields = wantedFields;
107 public String getFieldToSortBy()
109 return fieldToSortBy;
112 public void setFieldToSortBy(String fieldToSortBy, boolean isSortAscending)
114 this.fieldToSortBy = fieldToSortBy;
115 this.isSortAscending = isSortAscending;
118 public boolean isAscending()
120 return isSortAscending;
123 public SequenceI getAssociatedSequence()
125 return associatedSequence;
128 public void setAssociatedSequence(SequenceI associatedSequence)
130 this.associatedSequence = associatedSequence;
133 public String getQuery()
135 return fieldToSearchBy + searchTerm
136 + (isAllowEmptySeq() ? "" : " AND molecule_sequence:['' TO *]")
137 + (isAllowUnpublishedEntries() ? "" : " AND status:REL");
140 public String toString()
142 return "Query : " + getQuery() + " sort field: " + fieldToSortBy
143 + " isAsc: " + isAscending() + " Associated Seq : "
144 + associatedSequence;
147 public boolean isAllowUnpublishedEntries()
149 return allowUnpublishedEntries;
152 public void setAllowUnpublishedEntries(boolean allowUnpublishedEntries)
154 this.allowUnpublishedEntries = allowUnpublishedEntries;