| File was renamed from opends/src/server/org/opends/server/synchronization/Historical.java |
| | |
| | | * |
| | | * Portions Copyright 2006 Sun Microsystems, Inc. |
| | | */ |
| | | package org.opends.server.synchronization; |
| | | package org.opends.server.synchronization.plugin; |
| | | |
| | | import java.util.ArrayList; |
| | | import java.util.HashMap; |
| | |
| | | import org.opends.server.core.AddOperation; |
| | | import org.opends.server.core.DirectoryServer; |
| | | import org.opends.server.core.ModifyOperation; |
| | | import org.opends.server.synchronization.common.ChangeNumber; |
| | | import org.opends.server.synchronization.protocol.OperationContext; |
| | | import org.opends.server.types.Attribute; |
| | | import org.opends.server.types.AttributeType; |
| | | import org.opends.server.types.AttributeValue; |
| | |
| | | |
| | | public class Historical |
| | | { |
| | | static final String HISTORICALATTRIBUTENAME = "ds-sync-hist"; |
| | | static final AttributeType historicalAttrType = |
| | | /** |
| | | * The name of the attribute used to store historical information. |
| | | */ |
| | | public static final String HISTORICALATTRIBUTENAME = "ds-sync-hist"; |
| | | |
| | | /** |
| | | * The AttributeType associated to the attribute used to store |
| | | * hitorical information. |
| | | */ |
| | | public static final AttributeType historicalAttrType = |
| | | DirectoryServer.getSchema().getAttributeType(HISTORICALATTRIBUTENAME); |
| | | |
| | | static final String ENTRYUIDNAME = "entryuuid"; |
| | | static final AttributeType entryuuidAttrType = |
| | | DirectoryServer.getSchema().getAttributeType(ENTRYUIDNAME); |