• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/db-4.8.30/test/scr024/src/com/sleepycat/persist/test/
1/*-
2 * See the file LICENSE for redistribution information.
3 *
4 * Copyright (c) 2002-2009 Oracle.  All rights reserved.
5 *
6 * $Id$
7 */
8
9package com.sleepycat.persist.test;
10
11import static com.sleepycat.persist.model.Relationship.MANY_TO_ONE;
12
13import com.sleepycat.persist.model.Entity;
14import com.sleepycat.persist.model.PrimaryKey;
15import com.sleepycat.persist.model.SecondaryKey;
16
17/**
18 * For running ASMifier -- before any enhancements.
19 */
20@Entity
21class Enhanced0 {
22
23    @PrimaryKey
24    private String f1;
25
26    @SecondaryKey(relate=MANY_TO_ONE)
27    private int f2;
28    @SecondaryKey(relate=MANY_TO_ONE)
29    private String f3;
30    @SecondaryKey(relate=MANY_TO_ONE)
31    private String f4;
32
33    private int f5;
34    private String f6;
35    private String f7;
36}
37