/** * * * * $Id$ */ package org.apache.tuscany.das.rdb.config; /** * * A representation of the model object 'Connection Properties'. * * *

* The following features are supported: *

*

* * @generated */ public interface ConnectionProperties { /** * Returns the value of the 'Config' attribute. * *

* If the meaning of the 'Config' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Config' attribute. * @see #setConfig(String) * @generated */ String getConfig(); /** * Sets the value of the '{@link org.apache.tuscany.das.rdb.config.ConnectionProperties#getConfig Config}' attribute. * * * @param value the new value of the 'Config' attribute. * @see #getConfig() * @generated */ void setConfig(String value); /** * Returns the value of the 'Data Source' attribute. * *

* If the meaning of the 'Data Source' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Data Source' attribute. * @see #setDataSource(String) * @generated */ String getDataSource(); /** * Sets the value of the '{@link org.apache.tuscany.das.rdb.config.ConnectionProperties#getDataSource Data Source}' attribute. * * * @param value the new value of the 'Data Source' attribute. * @see #getDataSource() * @generated */ void setDataSource(String value); /** * Returns the value of the 'Driver Class Name' attribute. * *

* If the meaning of the 'Driver Class Name' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Driver Class Name' attribute. * @see #setDriverClassName(String) * @generated */ String getDriverClassName(); /** * Sets the value of the '{@link org.apache.tuscany.das.rdb.config.ConnectionProperties#getDriverClassName Driver Class Name}' attribute. * * * @param value the new value of the 'Driver Class Name' attribute. * @see #getDriverClassName() * @generated */ void setDriverClassName(String value); /** * Returns the value of the 'Driver Password' attribute. * *

* If the meaning of the 'Driver Password' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Driver Password' attribute. * @see #setDriverPassword(String) * @generated */ String getDriverPassword(); /** * Sets the value of the '{@link org.apache.tuscany.das.rdb.config.ConnectionProperties#getDriverPassword Driver Password}' attribute. * * * @param value the new value of the 'Driver Password' attribute. * @see #getDriverPassword() * @generated */ void setDriverPassword(String value); /** * Returns the value of the 'Driver URL' attribute. * *

* If the meaning of the 'Driver URL' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Driver URL' attribute. * @see #setDriverURL(String) * @generated */ String getDriverURL(); /** * Sets the value of the '{@link org.apache.tuscany.das.rdb.config.ConnectionProperties#getDriverURL Driver URL}' attribute. * * * @param value the new value of the 'Driver URL' attribute. * @see #getDriverURL() * @generated */ void setDriverURL(String value); /** * Returns the value of the 'Driver User Name' attribute. * *

* If the meaning of the 'Driver User Name' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Driver User Name' attribute. * @see #setDriverUserName(String) * @generated */ String getDriverUserName(); /** * Sets the value of the '{@link org.apache.tuscany.das.rdb.config.ConnectionProperties#getDriverUserName Driver User Name}' attribute. * * * @param value the new value of the 'Driver User Name' attribute. * @see #getDriverUserName() * @generated */ void setDriverUserName(String value); } // ConnectionProperties