01: // THIS SOFTWARE IS PROVIDED BY SOFTARIS PTY.LTD. AND OTHER METABOSS
02: // CONTRIBUTORS ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING,
03: // BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
04: // FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL SOFTARIS PTY.LTD.
05: // OR OTHER METABOSS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
06: // INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
07: // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
08: // OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
09: // LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
10: // NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
11: // EVEN IF SOFTARIS PTY.LTD. OR OTHER METABOSS CONTRIBUTORS ARE ADVISED OF THE
12: // POSSIBILITY OF SUCH DAMAGE.
13: //
14: // Copyright 2000-2005 © Softaris Pty.Ltd. All Rights Reserved.
15: package com.metaboss.sdlctools.domains.storagemodel.storage;
16:
17: import com.metaboss.sdlctools.types.storagemodel.NameConversionType;
18:
19: public final class STRelationalStorageTechnology {
20: public int MaxTableNameLength;
21: public NameConversionType AssociationTableNameConversionType;
22: public String AssociationTableNamePrefix;
23: public String AssociationTableNameSuffix;
24: public NameConversionType EntityTableNameConversionType;
25: public String EntityTableNamePrefix;
26: public String EntityTableNameSuffix;
27: public NameConversionType ReferenceTableNameConversionType;
28: public String ReferenceTableNamePrefix;
29: public String ReferenceTableNameSuffix;
30: public int MaxColumnNameLength;
31: public NameConversionType AttributeColumnNameConversionType;
32: public String AttributeColumnNamePrefix;
33: public String AttributeColumnNameSuffix;
34: public NameConversionType AssociationRoleColumnNameConversionType;
35: public String AssociationRoleColumnNamePrefix;
36: public String AssociationRoleColumnNameSuffix;
37: public String EntityInstanceIdColumnName;
38: public String EntityVersionIdColumnName;
39: public String EntityStateColumnName;
40: public String ReferenceValueColumnName;
41: public String ReferenceDescriptionColumnName;
42: public String ReferenceWeightColumnName;
43: public int MaxConstraintNameLength;
44: public NameConversionType AssociationRoleReferentialConstraintNameConversionType;
45: public String AssociationRoleReferentialConstraintNamePrefix;
46: public String AssociationRoleReferentialConstraintNameSuffix;
47: public NameConversionType AssociationPrimaryKeyConstraintNameConversionType;
48: public String AssociationPrimaryKeyConstraintNamePrefix;
49: public String AssociationPrimaryKeyConstraintNameSuffix;
50: public NameConversionType EntityPrimaryKeyConstraintNameConversionType;
51: public String EntityPrimaryKeyConstraintNamePrefix;
52: public String EntityPrimaryKeyConstraintNameSuffix;
53: public NameConversionType EntityNaturalPrimaryKeyConstraintNameConversionType;
54: public String EntityNaturalPrimaryKeyConstraintNamePrefix;
55: public String EntityNaturalPrimaryKeyConstraintNameSuffix;
56: public NameConversionType EntityAttributeRefConstraintNameConversionType;
57: public String EntityAttributeRefConstraintNamePrefix;
58: public String EntityAttributeRefConstraintNameSuffix;
59: public NameConversionType ReferencePrimaryKeyConstraintNameConversionType;
60: public String ReferencePrimaryKeyConstraintNamePrefix;
61: public String ReferencePrimaryKeyConstraintNameSuffix;
62: public NameConversionType ReferenceWeightConstraintNameConversionType;
63: public String ReferenceWeightConstraintNamePrefix;
64: public String ReferenceWeightConstraintNameSuffix;
65: }
|