blob: 0d84a77b2fd3cca9d426fdb436ebec4beb59f541 [file] [log] [blame]
/**
*
* Copyright (c) 2011, 2016 - Loetz GmbH&Co.KG (69115 Heidelberg, Germany)
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Christophe Loetz (Loetz GmbH&Co.KG) - initial implementation
*/
package org.eclipse.osbp.mondrian.api;
import java.net.URL;
/**
* This service provides information about mondrian catalogs.
*/
// TODO - goingEclipse - move me away from here
public interface IMondrianService {
/**
* This property is used in the properties of the OSGi service.
*/
public static final String PROP__PACKAGE_NAME = "packageName";
/**
* Returns the name of the cube package.
*
* @return
*/
public String getPackageName();
/**
* Returns the URL for the mondrian catalog.
*
* @return
*/
public URL getMondrianCatalogURL();
}