Skip navigation links

Oracle® OLAP Java API Reference
11g Release 1 (11.1)

B28128-01


oracle.olapi.metadata.deployment
Class AW

java.lang.Object
  extended by oracle.olapi.metadata.BaseMetadataObject
      extended by oracle.olapi.metadata.deployment.AW

All Implemented Interfaces:
MetadataObject

public class AW
extends BaseMetadataObject

A metadata object that represents an Oracle OLAP analytic workspace. An AW is owned by an MdmDatabaseSchema. An application creates or gets an AW by calling the findOrCreateAW method of an MdmDatabaseSchema. An AW is a top-level object that has associated MdmCube and MdmPrimaryDimension objects. It also has a tablespace.


Method Summary
 java.util.List getCubes()
          Gets the MdmCube objects that are associated with this AW.
 java.util.List getDimensions()
          Gets the MdmPrimaryDimension objects that are associated with this AW.
 java.lang.String getName()
          Gets the name of this AW.
 MdmDatabaseSchema getOwner()
          Gets the MdmDatabaseSchema that owns this AW.
 java.util.List getPersistentLanguages()
          Returns the list of all languages used for descriptions of MdmCube and MdmPrimaryDimension objects contained within this AW.
 java.lang.String getTablespace()
          Gets the name of the tablespace that contains this AW.
 void setName(java.lang.String name)
          Specifies a name for this AW.
 void setOwner(MdmDatabaseSchema owner)
          Specifies an owner for this AW.
 void setTablespace(java.lang.String name)
          Specifies a tablespace to contain this AW.

 

Methods inherited from class oracle.olapi.metadata.BaseMetadataObject
getID

 

Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

 

Method Detail

getName

public final java.lang.String getName()
Gets the name of this AW.
Returns:
A String that contains the name of the analytic workspace object.

setName

public final void setName(java.lang.String name)
Specifies a name for this AW.
Parameters:
name - A String that contains a name for the analytic workspace object.

getOwner

public final MdmDatabaseSchema getOwner()
Gets the MdmDatabaseSchema that owns this AW.
Overrides:
getOwner in class BaseMetadataObject
Returns:
A MdmDatabaseSchema that owns this AW/

setOwner

public final void setOwner(MdmDatabaseSchema owner)
Specifies an owner for this AW. Use this method to transfer ownership of an analytic workspace from one MdmDatabaseSchema to another.
Parameters:
owner - The MdmDatabaseSchema to be the owner of this AW.

getTablespace

public final java.lang.String getTablespace()
Gets the name of the tablespace that contains this AW.
Returns:
A String that contains the name of the tablespace that contains this AW.

setTablespace

public final void setTablespace(java.lang.String name)
Specifies a tablespace to contain this AW.
Parameters:
name - A String that contains the name of the tablespace for the AW.

getDimensions

public final java.util.List getDimensions()
Gets the MdmPrimaryDimension objects that are associated with this AW.
Returns:
A List of the MdmPrimaryDimension objects of this AW.

getCubes

public final java.util.List getCubes()
Gets the MdmCube objects that are associated with this AW.
Returns:
A List of the MdmCube objects of this AW.

getPersistentLanguages

public java.util.List getPersistentLanguages()
Returns the list of all languages used for descriptions of MdmCube and MdmPrimaryDimension objects contained within this AW. In addition, for contained MdmPrimaryDimension objects, the list also includes languages for AttributeMap objects contained within any DimensionMap objects owned directly or indirectly by that MdmPrimaryDimension.
Returns:
List of Strings representing NLS Languages.

Skip navigation links

Copyright © 2002, 2007, Oracle. All rights reserved.