📄 cmsqueries.java
字号:
/*
* File : $Source: /usr/local/cvs/opencms/src/com/opencms/file/mssql/Attic/CmsQueries.java,v $
* Date : $Date: 2003/04/01 15:20:18 $
* Version: $Revision: 1.3 $
*
* This library is part of OpenCms -
* the Open Source Content Mananagement System
*
* Copyright (C) 2001 The OpenCms Group
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* For further information about OpenCms, please see the
* OpenCms Website: http://www.opencms.org
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package com.opencms.file.mssql;
import com.opencms.boot.I_CmsLogChannels;
import com.opencms.core.A_OpenCms;
import java.util.Properties;
/**
* Reads SQL queries from query.properties of this resource broker package.
*/
public class CmsQueries extends com.opencms.file.genericSql.CmsQueries
{
private static Properties m_queries = null;
/**
* CmsQueries constructor comment.
*/
public CmsQueries() {
if(m_queries == null) {
m_queries = new Properties();
try {
m_queries.load(getClass().getClassLoader().getResourceAsStream("com/opencms/file/mssql/query.properties"));
} catch(NullPointerException exc) {
if(A_OpenCms.isLogging() && I_CmsLogChannels.C_PREPROCESSOR_IS_LOGGING) {
A_OpenCms.log(I_CmsLogChannels.C_OPENCMS_CRITICAL, "[CmsQueries] cannot get com/opencms/file/mssql/query.properties");
}
} catch(java.io.IOException exc) {
if(A_OpenCms.isLogging() && I_CmsLogChannels.C_PREPROCESSOR_IS_LOGGING) {
A_OpenCms.log(I_CmsLogChannels.C_OPENCMS_CRITICAL, "[CmsQueries] cannot get com/opencms/file/mssql/query.properties");
}
}
}
}
/**
* Get the value for the query name
*
* @param queryName the name of the property
* @return The value of the property
*/
public String get(String queryName){
if(m_queries == null) {
m_queries = new Properties();
try {
m_queries.load(getClass().getClassLoader().getResourceAsStream("com/opencms/file/mssql/query.properties"));
} catch(NullPointerException exc) {
if(A_OpenCms.isLogging() && I_CmsLogChannels.C_PREPROCESSOR_IS_LOGGING) {
A_OpenCms.log(I_CmsLogChannels.C_OPENCMS_CRITICAL, "[CmsQueries] cannot get com/opencms/file/mssql/query.properties");
}
} catch(java.io.IOException exc) {
if(A_OpenCms.isLogging() && I_CmsLogChannels.C_PREPROCESSOR_IS_LOGGING) {
A_OpenCms.log(I_CmsLogChannels.C_OPENCMS_CRITICAL, "[CmsQueries] cannot get com/opencms/file/mssql/query.properties");
}
}
}
String value = m_queries.getProperty(queryName);
if (value == null ||"".equals(value)){
value = super.get(queryName);
}
return value;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -