001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * This library is free software; you can redistribute it and/or modify it under
005     * the terms of the GNU Lesser General Public License as published by the Free
006     * Software Foundation; either version 2.1 of the License, or (at your option)
007     * any later version.
008     *
009     * This library is distributed in the hope that it will be useful, but WITHOUT
010     * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
011     * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
012     * details.
013     */
014    
015    package com.liferay.portal.search.lucene;
016    
017    import com.liferay.portal.kernel.search.QueryTerm;
018    import com.liferay.portal.kernel.search.TermQuery;
019    
020    import org.apache.lucene.index.Term;
021    
022    /**
023     * @author Brian Wing Shun Chan
024     */
025    public class TermQueryImpl implements TermQuery {
026    
027            public TermQueryImpl(String field, long value) {
028                    this(field, String.valueOf(value));
029            }
030    
031            public TermQueryImpl(String field, String value) {
032                    _termQuery = new org.apache.lucene.search.TermQuery(
033                            new Term(field, value));
034            }
035    
036            public QueryTerm getQueryTerm() {
037                    throw new UnsupportedOperationException();
038            }
039    
040            public org.apache.lucene.search.TermQuery getTermQuery() {
041                    return _termQuery;
042            }
043    
044            public String toString() {
045                    return _termQuery.toString();
046            }
047    
048            private org.apache.lucene.search.TermQuery _termQuery;
049    
050    }