001    /**
002     * Copyright (c) 2000-2010 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
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    }