01: /*
02: * $Header: /cvsroot/mvnforum/myvietnam/src/net/myvietnam/mvncore/service/EnvironmentService.java,v 1.7 2007/10/09 02:41:17 tbtrung Exp $
03: * $Author: tbtrung $
04: * $Revision: 1.7 $
05: * $Date: 2007/10/09 02:41:17 $
06: *
07: * ====================================================================
08: *
09: * Copyright (C) 2002-2007 by MyVietnam.net
10: *
11: * All copyright notices regarding MyVietnam and MyVietnam CoreLib
12: * MUST remain intact in the scripts and source code.
13: *
14: * This library is free software; you can redistribute it and/or
15: * modify it under the terms of the GNU Lesser General Public
16: * License as published by the Free Software Foundation; either
17: * version 2.1 of the License, or (at your option) any later version.
18: *
19: * This library is distributed in the hope that it will be useful,
20: * but WITHOUT ANY WARRANTY; without even the implied warranty of
21: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
22: * Lesser General Public License for more details.
23: *
24: * You should have received a copy of the GNU Lesser General Public
25: * License along with this library; if not, write to the Free Software
26: * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
27: *
28: * Correspondence and Marketing Questions can be sent to:
29: * info at MyVietnam net
30: *
31: * @author: Dung Bui
32: */
33: package net.myvietnam.mvncore.service;
34:
35: public interface EnvironmentService {
36:
37: public boolean isPortlet();
38:
39: public boolean isEnterprise();
40:
41: public String customizeFor();
42:
43: public void setShouldRun(boolean shouldRun, String reason);
44:
45: public void setEnableMVNForum(boolean enable);
46:
47: public void setEnableMVNCMS(boolean enable);
48:
49: public boolean isShouldRun();
50:
51: public boolean isMVNForum();
52:
53: public boolean isMVNAd();
54:
55: public boolean isMVNCMS();
56:
57: public String getReason();
58:
59: public void overloadEnvironment();
60:
61: }
|