Skip to content

Commit

Permalink
Added back the Proxy static interface to maintain retro-compatibility…
Browse files Browse the repository at this point in the history
… but marked it as deprecated. This proxy only extends the new one.

git-svn-id: https://olap4j.svn.sourceforge.net/svnroot/olap4j/trunk@99 c6a108a4-781c-0410-a6c6-c2d559e19af0
  • Loading branch information
lucboudreau committed Jul 21, 2008
1 parent 1d0e3a2 commit 8f0c269
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion src/org/olap4j/driver/xmla/XmlaOlap4jDriver.java
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
* </table>
*
* @author jhyde, Luc Boudreau
* @version $Id$
* @version $Id:$
* @since May 22, 2007
*/
public class XmlaOlap4jDriver implements Driver {
Expand Down Expand Up @@ -285,6 +285,16 @@ public enum Property {
Olap4jUtil.discard(description);
}
}

/**
* This is a mock subclass to prevent retro-compatibility issues.
* If you're using this class, please change your code to
* use XmlaOlap4jProxy instead.
* @author Luc Boudreau
*
*/
@Deprecated
public static interface Proxy extends XmlaOlap4jProxy {}
}

// End XmlaOlap4jDriver.java

0 comments on commit 8f0c269

Please sign in to comment.