blob: d465f028fe3f4a542773ac221a5251614f360baf [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
*
* http://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.mitosis.service.protocol.message;
import org.apache.directory.mitosis.service.protocol.Constants;
import org.apache.directory.shared.ldap.util.EqualsBuilder;
import org.apache.directory.shared.ldap.util.HashCodeBuilder;
public class BeginLogEntriesMessage extends BaseMessage
{
public BeginLogEntriesMessage( int sequence )
{
super( sequence );
}
public int getType()
{
return Constants.BEGIN_LOG_ENTRIES;
}
public boolean equals( final Object other )
{
if ( !( other instanceof BeginLogEntriesMessage ) )
{
return false;
}
return new EqualsBuilder().isEquals();
}
/**
* Compute the instance's hash code
* @return the instance's hashcode
*/
public int hashCode()
{
return new HashCodeBuilder( -1480829129, 951761287 ).appendSuper( super.hashCode() ).toHashCode();
}
public String toString()
{
return "[BeginLogEntries] " + super.toString();
}
}