// THIS SOFTWARE IS PROVIDED BY SOFTARIS PTY.LTD. AND OTHER METABOSS
// CONTRIBUTORS ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING,
// BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SOFTARIS PTY.LTD.
// OR OTHER METABOSS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
// OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
// EVEN IF SOFTARIS PTY.LTD. OR OTHER METABOSS CONTRIBUTORS ARE ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
//
// Copyright 2000-2005 Softaris Pty.Ltd. All Rights Reserved.
package com.metaboss.sdlctools.domains.storagemodel;
import com.metaboss.enterprise.bo.BOException;
import com.oldboss.framework.bo.BOObject;
public interface BORelationalEntityTableAssociationRole extends BOObject
{
/** Retrieves associated association role ref */
public String getAssociationRoleRef() throws BOException;
/** Getter for the suggested name of the reference column */
public String getInstanceIdColumnNameSuggestion() throws BOException;
/** Getter for the overriden name of the reference column */
public String getInstanceIdColumnNameOverride() throws BOException;
/** Getter for the suggested name of the referential constraint */
public String getReferentialConstraintNameSuggestion() throws BOException;
/** Getter for the overriden name of the referential constraint */
public String getReferentialConstraintNameOverride() throws BOException;
/** Setter for the suggested name of the reference column */
public void setInstanceIdColumnNameSuggestion(String pName) throws BOException;
/** Setter for the suggested name of the referential constraint */
public void setReferentialConstraintNameSuggestion(String pName) throws BOException;
}
|