/** * * * * $Id$ */ package org.apache.tuscany.das.rdb.config; import java.util.List; /** * * A representation of the model object 'Command'. * * *

* The following features are supported: *

*

* * @generated */ public interface Command { /** * Returns the value of the 'Parameter' containment reference list. * The list contents are of type {@link org.apache.tuscany.das.rdb.config.Parameter}. * *

* If the meaning of the 'Parameter' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Parameter' containment reference list. * @generated */ List getParameter(); /** * Returns the value of the 'Result Descriptor' containment reference list. * The list contents are of type {@link org.apache.tuscany.das.rdb.config.ResultDescriptor}. * *

* If the meaning of the 'Result Descriptor' containment reference list isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Result Descriptor' containment reference list. * @generated */ List getResultDescriptor(); /** * 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.Command#getConfig Config}' attribute. * * * @param value the new value of the 'Config' attribute. * @see #getConfig() * @generated */ void setConfig(String value); /** * Returns the value of the 'Kind' attribute. * *

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

* * @return the value of the 'Kind' attribute. * @see #setKind(String) * @generated */ String getKind(); /** * Sets the value of the '{@link org.apache.tuscany.das.rdb.config.Command#getKind Kind}' attribute. * * * @param value the new value of the 'Kind' attribute. * @see #getKind() * @generated */ void setKind(String value); /** * Returns the value of the 'Name' attribute. * *

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

* * @return the value of the 'Name' attribute. * @see #setName(String) * @generated */ String getName(); /** * Sets the value of the '{@link org.apache.tuscany.das.rdb.config.Command#getName Name}' attribute. * * * @param value the new value of the 'Name' attribute. * @see #getName() * @generated */ void setName(String value); /** * Returns the value of the 'SQL' attribute. * *

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

* * @return the value of the 'SQL' attribute. * @see #setSQL(String) * @generated */ String getSQL(); /** * Sets the value of the '{@link org.apache.tuscany.das.rdb.config.Command#getSQL SQL}' attribute. * * * @param value the new value of the 'SQL' attribute. * @see #getSQL() * @generated */ void setSQL(String value); } // Command