it.eng.spagobi.tools.dataset.metadata
Class SbiDataSetConfig

java.lang.Object
  extended by it.eng.spagobi.commons.metadata.SbiHibernateModel
      extended by it.eng.spagobi.tools.dataset.metadata.SbiDataSetConfig
All Implemented Interfaces:
java.io.Serializable

public class SbiDataSetConfig
extends SbiHibernateModel

This is the class used by the DAO to map the table sbi_meta_data. Given the current implementation of the DAO this is the class used by Hibernate to map the table sbi_meta_data. The following snippet of code, for example, shows how the DataSetDAOImpl load a dataset whose id is equal to datasetId... hibernateSession.load(SbiDataSetConfig.class, datasetId);

See Also:
Serialized Form

Constructor Summary
SbiDataSetConfig()
           
 
Method Summary
 java.lang.String getDescription()
          Gets the description.
 int getDsId()
          Gets the ds id.
 java.lang.String getLabel()
          Gets the label.
 java.lang.String getName()
          Gets the name.
 void setDescription(java.lang.String description)
          Sets the description.
 void setDsId(int dsId)
          Sets the ds id.
 void setLabel(java.lang.String label)
          Sets the label.
 void setName(java.lang.String name)
          Sets the name.
 
Methods inherited from class it.eng.spagobi.commons.metadata.SbiHibernateModel
getCommonInfo, setCommonInfo
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

SbiDataSetConfig

public SbiDataSetConfig()
Method Detail

getName

public java.lang.String getName()
Gets the name.

Returns:
the name

setName

public void setName(java.lang.String name)
Sets the name.

Parameters:
name - the new name

getDescription

public java.lang.String getDescription()
Gets the description.

Returns:
the description

setDescription

public void setDescription(java.lang.String description)
Sets the description.

Parameters:
description - the new description

getLabel

public java.lang.String getLabel()
Gets the label.

Returns:
the label

setLabel

public void setLabel(java.lang.String label)
Sets the label.

Parameters:
label - the new label

getDsId

public int getDsId()
Gets the ds id.

Returns:
the ds id

setDsId

public void setDsId(int dsId)
Sets the ds id.

Parameters:
dsId - the new ds id