|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Connection | |
---|---|
org.palo.api | |
org.palo.api.ext.favoriteviews | |
org.palo.api.ext.favoriteviews.impl | |
org.palo.api.impl |
Uses of Connection in org.palo.api |
---|
Methods in org.palo.api that return Connection | |
---|---|
Connection |
Database.getConnection()
Returns the parent Connection of this instance. |
Connection |
ConnectionEvent.getSource()
Returns the source Connection of the event. |
abstract Connection |
ConnectionFactory.newConnection(ConnectionConfiguration cfg)
Creates a new Connection using the connection settings from the
given ConnectionConfiguration |
abstract Connection |
ConnectionFactory.newConnection(java.lang.String server,
java.lang.String service,
java.lang.String user,
java.lang.String pass)
Deprecated. please use {@link #newConnection(ConnectionConfiguration) |
abstract Connection |
ConnectionFactory.newConnection(java.lang.String server,
java.lang.String service,
java.lang.String user,
java.lang.String pass,
boolean doLoadOnDemand,
int type)
Deprecated. please use {@link #newConnection(ConnectionConfiguration) |
Methods in org.palo.api with parameters of type Connection | |
---|---|
abstract Property2 |
Property2Factory.newProperty(Connection con,
java.lang.String id,
java.lang.String value)
Creates a new property2 object that has no parent and is of type string. |
abstract Property2 |
Property2Factory.newProperty(Connection con,
java.lang.String id,
java.lang.String value,
int type)
Creates a new property2 object that has no parent and is of the specified type (one of the constants defined in Property2). |
abstract Property2 |
Property2Factory.newProperty(Connection con,
java.lang.String id,
java.lang.String value,
Property2 parent)
Creates a new property2 object that has the given parent and is of type string. |
abstract Property2 |
Property2Factory.newProperty(Connection con,
java.lang.String id,
java.lang.String value,
Property2 parent,
int type)
Creates a new property2 object that has the given parent and is of the specified type (one of the constants defined in Property2). |
abstract Property2 |
Property2Factory.newReadOnlyProperty(Connection con,
java.lang.String id,
java.lang.String value)
Creates a new read-only property2 object that has no parent and is of type string. |
abstract Property2 |
Property2Factory.newReadOnlyProperty(Connection con,
java.lang.String id,
java.lang.String value,
int type)
Creates a new read-only property2 object that has no parent and is of the specified type (one of the constants defined in Property2). |
abstract Property2 |
Property2Factory.newReadOnlyProperty(Connection con,
java.lang.String id,
java.lang.String value,
Property2 parent)
Creates a new read-only property2 object that has the given parent and is of type string. |
abstract Property2 |
Property2Factory.newReadOnlyProperty(Connection con,
java.lang.String id,
java.lang.String value,
Property2 parent,
int type)
Creates a new read-only property2 object that has the given parent and is of the specified type (one of the constants defined in Property2). |
Constructors in org.palo.api with parameters of type Connection | |
---|---|
ConnectionEvent(Connection source,
java.lang.Object parent,
int type,
java.lang.Object[] items)
Constructs a new ConnectionEvent with the given properties. |
Uses of Connection in org.palo.api.ext.favoriteviews |
---|
Methods in org.palo.api.ext.favoriteviews that return Connection | |
---|---|
Connection |
FavoriteViewObject.getConnection()
Returns the Connection object that is attached to this
favorite view or favorite views folder. |
Methods in org.palo.api.ext.favoriteviews with parameters of type Connection | |
---|---|
abstract FavoriteViewsFolder |
FavoriteViewFactory.createFolder(java.lang.String name,
Connection con)
Creates a new FavoriteViewsFolder with the specified name
and connection. |
abstract FavoriteViewsFolder |
FavoriteViewFactory.createFolder(java.lang.String name,
Connection con,
int position)
Creates a new FavoriteViewsFolder with the specified name
and connection. |
Uses of Connection in org.palo.api.ext.favoriteviews.impl |
---|
Methods in org.palo.api.ext.favoriteviews.impl that return Connection | |
---|---|
Connection |
FavoriteViewsFolderImpl.getConnection()
Returns the connection for this folder. |
Connection |
FavoriteViewImpl.getConnection()
Returns the connection that belongs to the attached cube view. |
Methods in org.palo.api.ext.favoriteviews.impl with parameters of type Connection | |
---|---|
Cube |
FavoriteViewModel.createBookmarkCubeInNewDatabase(Connection con)
If a connection is found that does not (yet) have an AdvancedSystem database, the database is created in this
method, then dimensions (#user and #bookmarkedViews) are added along
with the entries (the current user name and "Bookmarks"). |
FavoriteViewsFolder |
FavoriteViewFactoryImpl.createFolder(java.lang.String name,
Connection con)
Creates a new favorite views folder with a default position (0). |
FavoriteViewsFolder |
FavoriteViewFactoryImpl.createFolder(java.lang.String name,
Connection con,
int position)
Creates a new favorite views folder. |
CubeView |
FavoriteViewXMLHandler.findCubeViewById(Connection connection,
java.lang.String dbId,
java.lang.String cubeId,
java.lang.String viewId)
This method is used to find a CubeView object in the
set of currently active databases and connections. |
FavoriteViewTreeNode |
FavoriteViewModel.loadFavoriteViews(Connection con)
The method retrieves the AdvancedSystem database of the connection (or creates it, if it is not yet in the connection) and also gets the bookmark-cube from the AdvancedSystem database (or creates it, if it had not been present (for this user)). |
void |
FavoriteViewModel.storeFavoriteViews(Connection con,
FavoriteViewTreeNode root)
Stores a favorite views tree in the given connection. |
Constructors in org.palo.api.ext.favoriteviews.impl with parameters of type Connection | |
---|---|
FavoriteViewsFolderImpl(java.lang.String name,
Connection con)
Creates a new folder with the specified name and connection. |
|
FavoriteViewsFolderImpl(java.lang.String name,
Connection con,
int position)
Creates a new folder with the specified name and position. |
|
FavoriteViewXMLBuilder(Connection con)
The constructor initializes the result with the XML header description and sets initial indentation to 0. |
|
FavoriteViewXMLHandler(Connection connection)
The constructor adds the handlers for the XML structure. |
Uses of Connection in org.palo.api.impl |
---|
Classes in org.palo.api.impl that implement Connection | |
---|---|
class |
ConnectionImpl
TODO DOCUMENT ME |
Methods in org.palo.api.impl that return Connection | |
---|---|
Connection |
ConnectionFactoryImpl.newConnection(ConnectionConfiguration cfg)
|
Connection |
ConnectionFactoryImpl.newConnection(java.lang.String server,
java.lang.String service,
java.lang.String user,
java.lang.String pass)
Deprecated. please use @{link ConnectionFactoryImpl.newConnection(ConnectionConfiguration) |
Connection |
ConnectionFactoryImpl.newConnection(java.lang.String server,
java.lang.String service,
java.lang.String user,
java.lang.String pass,
boolean doLoadOnDemand,
int type)
Deprecated. please use @{link ConnectionFactoryImpl.newConnection(ConnectionConfiguration) |
Methods in org.palo.api.impl with parameters of type Connection | |
---|---|
Property2 |
Property2FactoryImpl.newProperty(Connection con,
java.lang.String id,
java.lang.String value)
|
Property2 |
Property2FactoryImpl.newProperty(Connection con,
java.lang.String id,
java.lang.String value,
int type)
|
Property2 |
Property2FactoryImpl.newProperty(Connection con,
java.lang.String id,
java.lang.String value,
Property2 parent)
|
Property2 |
Property2FactoryImpl.newProperty(Connection con,
java.lang.String id,
java.lang.String value,
Property2 parent,
int type)
|
Property2 |
Property2FactoryImpl.newReadOnlyProperty(Connection con,
java.lang.String id,
java.lang.String value)
|
Property2 |
Property2FactoryImpl.newReadOnlyProperty(Connection con,
java.lang.String id,
java.lang.String value,
int type)
|
Property2 |
Property2FactoryImpl.newReadOnlyProperty(Connection con,
java.lang.String id,
java.lang.String value,
Property2 parent)
|
Property2 |
Property2FactoryImpl.newReadOnlyProperty(Connection con,
java.lang.String id,
java.lang.String value,
Property2 parent,
int type)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |