blob: 565f00f660c71e581940e4020308e69eb060ad80 [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.extras.intermediate.syncrepl;
import java.util.List;
import org.apache.directory.api.ldap.model.message.IntermediateResponse;
/**
* A syncInfoValue object, as defined in RFC 4533 ;
* <pre>
* 2.5. Sync Info Message
*
* The Sync Info Message is an LDAP Intermediate Response Message
* [RFC4511] where responseName is the object identifier
* 1.3.6.1.4.1.4203.1.9.1.4 and responseValue contains a BER-encoded
* syncInfoValue. The criticality is FALSE (and hence absent).
*
* syncInfoValue ::= CHOICE {
* newcookie [0] syncCookie,
* refreshDelete [1] SEQUENCE {
* cookie syncCookie OPTIONAL,
* refreshDone BOOLEAN DEFAULT TRUE
* },
* refreshPresent [2] SEQUENCE {
* cookie syncCookie OPTIONAL,
* refreshDone BOOLEAN DEFAULT TRUE
* },
* syncIdSet [3] SEQUENCE {
* cookie syncCookie OPTIONAL,
* refreshDeletes BOOLEAN DEFAULT FALSE,
* syncUUIDs SET OF syncUUID
* }
* }
* </pre>
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public interface SyncInfoValue extends IntermediateResponse
{
/** This intermediate response OID */
String OID = "1.3.6.1.4.1.4203.1.9.1.4";
/**
* Get the value type.
*
* @return the type : one of newCookie, refreshDelete, refreshPresent or syncIdSet
*/
SynchronizationInfoEnum getSyncInfoValueType();
/**
* @param type the synchronization type to set
*/
void setSyncInfoValueType( SynchronizationInfoEnum type );
/**
* @return the cookie
*/
byte[] getCookie();
/**
* @param cookie the cookie to set
*/
void setCookie( byte[] cookie );
/**
* @return the refreshDone
*/
boolean isRefreshDone();
/**
* @param refreshDone the refreshDone to set
*/
void setRefreshDone( boolean refreshDone );
/**
* @return the refreshDeletes
*/
boolean isRefreshDeletes();
/**
* @param refreshDeletes the refreshDeletes to set
*/
void setRefreshDeletes( boolean refreshDeletes );
/**
* @return the syncUUIDs
*/
List<byte[]> getSyncUUIDs();
/**
* @param syncUUIDs the syncUUIDs to set
*/
void setSyncUUIDs( List<byte[]> syncUUIDs );
/**
* @param syncUUID the syncUUIDs to set
*/
void addSyncUUID( byte[] syncUUID );
}