01: /*
02: * Copyright 2001 Sun Microsystems, Inc. All rights reserved.
03: * PROPRIETARY/CONFIDENTIAL. Use of this product is subject to license terms.
04: */
05:
06: package com.sun.portal.search.db;
07:
08: import java.util.*;
09:
10: /**
11: * For calculating rd-last-changed
12: */
13: class RDLastChanged {
14: Date old_rdlc;
15: Date new_rdlc;
16: boolean update_flag;
17: }
|