Package org.olap4j.driver.xmla
Interface XmlaOlap4jServerInfos
-
public interface XmlaOlap4jServerInfos
Common set of functions for an XMLA URL Provider.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getPassword()
Returns the password to use with the URL.java.lang.String
getSessionId()
Returns a unique sesison ID to use.java.net.URL
getUrl()
Returns the URL to use.java.lang.String
getUsername()
Returns the username to use with the URL.void
setSessionId(java.lang.String sessionId)
Stores the session id on the server.
-
-
-
Method Detail
-
getUrl
java.net.URL getUrl()
Returns the URL to use.- Returns:
- the url.
-
getUsername
java.lang.String getUsername()
Returns the username to use with the URL.- Returns:
- the username.
-
getPassword
java.lang.String getPassword()
Returns the password to use with the URL.- Returns:
- the password.
-
getSessionId
java.lang.String getSessionId()
Returns a unique sesison ID to use.- Returns:
- the session id.
-
setSessionId
void setSessionId(java.lang.String sessionId)
Stores the session id on the server.- Parameters:
sessionId
- The session id to use.
-
-