DocSearchItem.java
/*
* Copyright (c) 2002-2023, City of Paris
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright notice
* and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice
* and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* 3. Neither the name of 'Mairie de Paris' nor 'Lutece' nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* License 1.0
*/
package fr.paris.lutece.plugins.document.service.docsearch;
import org.apache.lucene.document.Document;
/**
* DocSearchItem
*/
public class DocSearchItem
{
public static final String FIELD_UID = "uid";
public static final String FIELD_CONTENTS = "contents";
public static final String FIELD_TITLE = "title";
public static final String FIELD_SUMMARY = "summary";
public static final String FIELD_DATE = "date";
public static final String FIELD_TYPE = "type";
public static final String FIELD_SPACE = "space";
// Variables declarations
private String _strId;
private String _strTitle;
private String _strSummary;
private String _strLastModifiedDate;
private String _strType;
/**
* The constructor
* @param document the lucene document
*/
public DocSearchItem( Document document )
{
setId( document.get( FIELD_UID ) );
setTitle( document.get( FIELD_TITLE ) );
setSummary( document.get( FIELD_SUMMARY ) );
setDate( document.get( FIELD_DATE ) );
setType( document.get( FIELD_TYPE ) );
}
/**
* Returns the Id
*
* @return The Id
*/
public String getId( )
{
return _strId;
}
/**
* Sets the Id
*
* @param strId The Id
*/
public void setId( String strId )
{
_strId = strId;
}
/**
* Returns the Title
*
* @return The Title
*/
public String getTitle( )
{
return _strTitle;
}
/**
* Sets the Title
*
* @param strTitle The Title
*/
public void setTitle( String strTitle )
{
_strTitle = strTitle;
}
/**
* Returns the Summary
*
* @return The Summary
*/
public String getSummary( )
{
return ( _strSummary != null ) ? _strSummary : "";
}
/**
* Sets the Summary
*
* @param strSummary The Summary
*/
public void setSummary( String strSummary )
{
_strSummary = strSummary;
}
/**
* Returns the LastModifiedDate
*
* @return The LastModifiedDate
*/
public String getDate( )
{
return ( _strLastModifiedDate != null ) ? _strLastModifiedDate : "";
}
/**
* Sets the LastModifiedDate
*
* @param strLastModifiedDate The LastModifiedDate
*/
public void setDate( String strLastModifiedDate )
{
_strLastModifiedDate = strLastModifiedDate;
}
/**
* Returns the Type
*
* @return The Type
*/
public String getType( )
{
return _strType;
}
/**
* Sets the Type
*
* @param strType The Type
*/
public void setType( String strType )
{
_strType = strType;
}
}