01: /*
02: * $Header: /cvsroot/mvnforum/mvnforum/src/com/mvnforum/search/albumitem/RebuildAlbumItemIndexTaskMapping.java,v 1.1 2007/11/14 11:07:41 minhnn Exp $
03: * $Author: minhnn $
04: * $Revision: 1.1 $
05: * $Date: 2007/11/14 11:07:41 $
06: *
07: * ====================================================================
08: *
09: * Copyright (C) 2002-2007 by MyVietnam.net
10: *
11: * MyVietnam.net PROPRIETARY/CONFIDENTIAL PROPERTIES. Use is subject to license terms.
12: * You CANNOT use this software unless you receive a written permission from MyVietnam.net
13: *
14: * @author: MyVietnam.net developers
15: */
16: package com.mvnforum.search.albumitem;
17:
18: /**
19: * Rebuilding indices task. This task do indexing of all documents
20: */
21: public class RebuildAlbumItemIndexTaskMapping {
22:
23: private static boolean isRebuilding = false;
24:
25: public static boolean isRebuilding() {
26: return isRebuilding;
27: }
28:
29: public static void setRebuilding(boolean rebuilding) {
30: isRebuilding = rebuilding;
31: }
32:
33: }
|