JAL-2316 Moved url providers into own package
[jalview.git] / src / jalview / urls / IdentifiersUrlProvider.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.urls;
23
24 import java.util.Map;
25 import java.util.Vector;
26
27 /**
28  * 
29  * Implements the UrlProviderI interface for a UrlProvider object which serves
30  * URLs from identifiers.org
31  * 
32  * @author $author$
33  * @version $Revision$
34  */
35 public class IdentifiersUrlProvider extends UrlProviderImpl
36 {
37
38   public IdentifiersUrlProvider(String cachedUrlList)
39   {
40
41   }
42
43   public IdentifiersUrlProvider(Map<String, String> urlList)
44   {
45
46   }
47
48   @Override
49   public String getDefaultUrl()
50   {
51     // TODO Auto-generated method stub
52     return null;
53   }
54
55   @Override
56   public boolean setDefaultUrl(String id)
57   {
58     return false;
59   }
60
61   @Override
62   public String writeUrlsAsString()
63   {
64     return "";
65   }
66
67   @Override
68   public Vector<String> getLinksForDisplay()
69   {
70     // TODO Auto-generated method stub
71     return null;
72   }
73
74   @Override
75   public String getDefaultUrl(String seqid)
76   {
77     // TODO Auto-generated method stub
78     return null;
79   }
80
81   @Override
82   public String getDefaultTarget(String seqid)
83   {
84     // TODO Auto-generated method stub
85     return null;
86   }
87
88   @Override
89   public void setUrlLinks(Vector<String> names, Vector<String> urls)
90   {
91     // deliberately left empty
92     // TODO throw exception if called
93   }
94
95   @Override
96   public String chooseDefaultUrl()
97   {
98     // TODO Auto-generated method stub
99     return null;
100   }
101
102 }