blob: 6a90c6238b21f755df228c1c8be4462a02b06766 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
package org.apache.directory.api.ldap.model.message;
import org.apache.directory.api.ldap.model.entry.DefaultEntry;
import org.apache.directory.api.ldap.model.entry.Entry;
import org.apache.directory.api.ldap.model.name.Dn;
/**
* Lockable SearchResponseEntry implementation
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public class SearchResultEntryImpl extends AbstractResponse implements SearchResultEntry
{
static final long serialVersionUID = -8357316233060886637L;
/** Entry returned in response to search */
private Entry entry = new DefaultEntry();
/**
* Creates a SearchResponseEntry as a reply to an SearchRequest to
* indicate the end of a search operation.
*/
public SearchResultEntryImpl()
{
super( -1, MessageTypeEnum.SEARCH_RESULT_ENTRY );
}
/**
* Creates a SearchResponseEntry as a reply to an SearchRequest to
* indicate the end of a search operation.
*
* @param id the session unique message id
*/
public SearchResultEntryImpl( final int id )
{
super( id, MessageTypeEnum.SEARCH_RESULT_ENTRY );
}
// ------------------------------------------------------------------------
// SearchResponseEntry Interface Method Implementations
// ------------------------------------------------------------------------
/**
* Gets the entry
*
* @return the entry
*/
@Override
public Entry getEntry()
{
return entry;
}
/**
* Sets the entry.
*
* @param entry the entry
*/
@Override
public void setEntry( Entry entry )
{
this.entry = entry;
}
/**
* Gets the distinguished name of the entry object returned.
*
* @return the Dn of the entry returned.
*/
@Override
public Dn getObjectName()
{
return entry == null ? null : entry.getDn();
}
/**
* Sets the distinguished name of the entry object returned.
*
* @param objectName the Dn of the entry returned.
*/
@Override
public void setObjectName( Dn objectName )
{
if ( entry != null )
{
entry.setDn( objectName );
}
}
/**
* {@inheritDoc}
*/
@Override
public int hashCode()
{
int hash = 37;
if ( entry != null )
{
hash = hash * 17 + entry.hashCode();
}
hash = hash * 17 + super.hashCode();
return hash;
}
/**
* Checks for equality by comparing the objectName, and attributes
* properties of this Message after delegating to the super.equals() method.
*
* @param obj
* the object to test for equality with this message
* @return true if the obj is equal false otherwise
*/
@Override
public boolean equals( Object obj )
{
if ( this == obj )
{
return true;
}
if ( !super.equals( obj ) )
{
return false;
}
if ( !( obj instanceof SearchResultEntry ) )
{
return false;
}
SearchResultEntry resp = ( SearchResultEntry ) obj;
return entry.equals( resp.getEntry() );
}
/**
* Return a string representation of a SearchResultEntry request
*/
@Override
public String toString()
{
StringBuilder sb = new StringBuilder();
sb.append( " Search Result Entry\n" );
if ( entry != null )
{
sb.append( entry );
}
else
{
sb.append( " No entry\n" );
}
return super.toString( sb.toString() );
}
}