dynamicschemaprocessor.java

来自「数据仓库展示程序」· Java 代码 · 共 37 行

JAVA
37
字号
/*
// $Id: //open/mondrian/src/main/mondrian/rolap/DynamicSchemaProcessor.java#4 $
// This software is subject to the terms of the Common Public License
// Agreement, available at the following URL:
// http://www.opensource.org/licenses/cpl.html.
// Copyright (C) 2004-2005 TONBELLER AG
// Copyright (C) 2005-2005 Julian Hyde
// All Rights Reserved.
// You must accept the terms of that agreement to use this software.
*/
package mondrian.rolap;

import mondrian.olap.Util;

import java.net.URL;

/**
 * A dynamic schema processor is used to dynamically change
 * a Mondrian schema at runtime.
 */
public interface DynamicSchemaProcessor {

    /**
     * Modifies a Mondrian schema.
     *
     * @param schemaUrl the catalog URL
     * @param connectInfo Connection properties
     * @return the modified schema
     */
    public String processSchema(
            URL schemaUrl,
            Util.PropertyList connectInfo) throws Exception;
}

// End DynamicSchemaProcessor.java

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?