1/*-
2 * See the file LICENSE for redistribution information.
3 *
4 * Copyright (c) 2002,2008 Oracle.  All rights reserved.
5 *
6 * $Id: KeyLocation.java,v 1.1 2008/02/07 17:12:27 mark Exp $
7 */
8
9package com.sleepycat.persist.impl;
10
11/**
12 * Holder for the input and format of a key.  Used when copying secondary keys.
13 * Returned by RecordInput.getKeyLocation().
14 *
15 * @author Mark Hayes
16 */
17class KeyLocation {
18
19    RecordInput input;
20    Format format;
21
22    KeyLocation(RecordInput input, Format format) {
23        this.input = input;
24        this.format = format;
25    }
26}
27