Class VirtualDbData

    • Constructor Detail

      • VirtualDbData

        public VirtualDbData()
    • Method Detail

      • getReporterCloneTemplate

        public ReporterCloneTemplateData getReporterCloneTemplate()
        Get the template used for creating the cloned reporter table in this virtual database, or null if there is no cloned reporter information.
        Since:
        3.1
        Hibernate: many-to-one
        column="`clone_template_id`" not-null="false" outer-join="false" unique="true" cascade="delete"
      • getCubes

        public short getCubes()
        The number of data cubes in the virtual database. Updates to this column are done through SQL statements and not through this object.
        Hibernate: property
        column="`cubes`" type="short" not-null="true" update="false"
      • setCubes

        public void setCubes​(short cubes)
      • getMappings

        public short getMappings()
        The number of cube mappings in the virtual database.
        Hibernate: property
        column="`mappings`" type="short" not-null="true"
      • setMappings

        public void setMappings​(short mappings)
      • getDataCubes

        Set<DataCubeData> getDataCubes()
        This is the inverse end.
        See Also:
        DataCubeData.getVirtualDb()
        Hibernate: set
        lazy="true" inverse="true" cascade="delete"
        Hibernate: collection-key
        column="`virtualdb_id`"
        Hibernate: collection-one-to-many
        class="net.sf.basedb.core.data.DataCubeData"