//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v1.0.4-b18-fcs
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2005.03.31 at 08:49:20 EST
//
package com.metaboss.sdlctools.domains.storagemodel.storage.xmlfileimpl.dom;
/**
* Reference to the algorithm to be used in forming the enumerable datatype reference table primary key constraint names from the datatype reference obtained from the model.
* The reference table primary key constraint is based on constant value column, which is always present.
* It ensures that the reference table contains at most one record with the same enumerable value.
*
* Java content class for ReferencePrimaryKeyConstraintNameConversionType element declaration.
* <p>The following schema fragment specifies the expected content contained within this java content object. (defined at file:/C:/MetaBoss/XMLSchemas/MetaBoss/SdlcTools/StorageModel/1.0/storagemodel.xsd line 538)
* <p>
* <pre>
* <element name="ReferencePrimaryKeyConstraintNameConversionType" type="{http://www.metaboss.com/XMLSchemas/MetaBoss/SdlcTools/StorageModel/1.0}NameConversionType"/>
* </pre>
*
*/
public interface ReferencePrimaryKeyConstraintNameConversionType
extends javax.xml.bind.Element
{
/**
* The type of the algorithm used to convert names from the model to the
* database object names. (e.g. When entity name in the model "OrderItem"
* is converted using "UpperUnderscored" algorithm - the resulting table name
* will be ORDER_ITEM)
*
* @return
* possible object is
* {@link java.lang.String}
*/
java.lang.String getValue();
/**
* The type of the algorithm used to convert names from the model to the
* database object names. (e.g. When entity name in the model "OrderItem"
* is converted using "UpperUnderscored" algorithm - the resulting table name
* will be ORDER_ITEM)
*
* @param value
* allowed object is
* {@link java.lang.String}
*/
void setValue(java.lang.String value);
}
|