mirror of https://github.com/apache/lucene.git
add @Override
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@588273 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e94db661e5
commit
d89039bbb9
|
@ -57,6 +57,7 @@ import org.apache.solr.highlight.SolrHighlighter;
|
||||||
* </ul>
|
* </ul>
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public class StandardRequestHandler extends RequestHandlerBase {
|
public class StandardRequestHandler extends RequestHandlerBase {
|
||||||
|
|
||||||
/** shorten the class references for utilities */
|
/** shorten the class references for utilities */
|
||||||
|
@ -164,22 +165,27 @@ public class StandardRequestHandler extends RequestHandlerBase {
|
||||||
|
|
||||||
//////////////////////// SolrInfoMBeans methods //////////////////////
|
//////////////////////// SolrInfoMBeans methods //////////////////////
|
||||||
|
|
||||||
|
@Override
|
||||||
public String getVersion() {
|
public String getVersion() {
|
||||||
return "$Revision$";
|
return "$Revision$";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public String getDescription() {
|
public String getDescription() {
|
||||||
return "The standard Solr request handler";
|
return "The standard Solr request handler";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public String getSourceId() {
|
public String getSourceId() {
|
||||||
return "$Id$";
|
return "$Id$";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public String getSource() {
|
public String getSource() {
|
||||||
return "$URL$";
|
return "$URL$";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
public URL[] getDocs() {
|
public URL[] getDocs() {
|
||||||
try {
|
try {
|
||||||
return new URL[] { new URL("http://wiki.apache.org/solr/StandardRequestHandler") };
|
return new URL[] { new URL("http://wiki.apache.org/solr/StandardRequestHandler") };
|
||||||
|
|
Loading…
Reference in New Issue