Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "EclipseLink/Development/DBWS/NamingConventionTransformer"

(Proposed new Interface org.eclipse.persistence.tools.dbws.NamingConventionTransformer)
(Proposed new Interface org.eclipse.persistence.tools.dbws.NamingConventionTransformer)
Line 33: Line 33:
 
         ELEMENT, ATTRIBYTE
 
         ELEMENT, ATTRIBYTE
 
     };
 
     };
 
    public boolean isUserTransformer();
 
  
 
     public String generateTableAlias(String tableName);
 
     public String generateTableAlias(String tableName);

Revision as of 15:31, 12 September 2008

DBWS Schema Naming Convention Transformers

Document History

Date Author Version Description & Notes
080911 Mike Norman 1.0

DBWS utility enhancement: Naming convention of generated schema types

bug 234677
The DBWSBuilder utility should allow the user to alter the names of the generated schema types.
The algorithm currently in use is very simple:

  • table name ==> translate any characters un-supported by XML1 ==> to_lowercase ==> add suffix 'Type' ==> top-level complex element type in .xsd file
  • column name ==> translate characters ==> to_lowercase ==> element tag name2

1 - same algorithm documented as part of the SQL/X specification (a.k.a. ISO/IEC 9075-14:2003 Part 14)
2 - All columns expressed as XML elements

Proposed new Interface org.eclipse.persistence.tools.dbws.NamingConventionTransformer

The proposed fix for bug 234677 is the introduction of a new Interface class:

package org.eclipse.persistence.tools.dbws;
 
public interface NamingConventionTransformer {
 
    public enum ElementStyle {
        ELEMENT, ATTRIBYTE
    };
 
    public String generateTableAlias(String tableName);
 
    public String generateSchemaTypeAlias(String originalSchemaName);
 
    public String generateWrapperElementNameAlias(String originalWrapperElementName);
 
    public String generateElementNameAlias(String originalElementName);
 
    public ElementStyle styleForElement(String elementName);
}
 
public class DefaultNamingConventionTransformer implements NamingConventionTransformer {
    // user-provided transformer must extended this class
   . . .
}

The algorithm above will be converted to a series of transformers (operating as a Chain-of-Responsibility) that cooperate together to transform the database table's metadata
(table name, table columns) into the schema's <xsd:complexType> and <xsd:element>'s.

  • generateTableAlias
more asldkfj;sadfjk
  • generateWrapperElementNameAlias
dfsdf
  • generateElementNameAlias
sdfsadf
  • ElementStyle styleForElement
sadfasdflkj

Back to the top