| | |
| | | import org.opends.server.replication.protocol.DeleteMsg; |
| | | import org.opends.server.replication.protocol.LDAPUpdateMsg; |
| | | import org.opends.server.replication.protocol.ModifyDNMsg; |
| | | import org.opends.server.replication.protocol.ModifyMsg; |
| | | import org.opends.server.replication.protocol.OperationContext; |
| | | import org.opends.server.types.Operation; |
| | | |
| | |
| | | addDependency(change); |
| | | } |
| | | } |
| | | else if (pendingMsg instanceof ModifyMsg) |
| | | { |
| | | if (pendingMsg.getDN().equals(targetDN)) |
| | | { |
| | | // it is another modify on the same DN, they depend |
| | | hasDependencies = true; |
| | | addDependency(change); |
| | | } |
| | | } |
| | | } |
| | | return hasDependencies; |
| | | } |