Java Doc for DatabaseConventionsConfig.java in  » Portal » mypersonalizer » es » udc » mypersonalizer » kernel » model » repository » sql » config » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Portal » mypersonalizer » es.udc.mypersonalizer.kernel.model.repository.sql.config 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   es.udc.mypersonalizer.kernel.model.repository.sql.config.DatabaseConventionsConfig

DatabaseConventionsConfig
public class DatabaseConventionsConfig implements Configuration(Code)
Configuration bean maintaining the database naming conventions. Instances are initialized with sensible values.
author:
   Abel Muinho Vizcaino
since:
   1.0



Constructor Summary
public  DatabaseConventionsConfig()
     Constructor for the bean.

Method Summary
public  StringgetCachedServiceReplyTable()
     Gets the name of the table storing cached service replies.
public  StringgetForeignKeyNamePrefix()
     Obtains the prefix for foreign key naming.
public  StringgetGeneratedIdentifierColumn()
     Obtains the name of the column for generated identifiers.
public  StringgetGeneratedIdentifierSequenceInfix()
     Obtains the extra infix for generated identifiers for sequences (when supported by the database, for example, Oracle).
public  StringgetLoginColumn()
     Retuns the name of the column for user login names.
public  StringgetPrimaryKeyNamePrefix()
     Obtains the prefix for primary key naming.
public  StringgetPropertyIdentifierColumn()
     Obtains the name of the column for property identifiers.
public  StringgetSequenceSuffix()
     Obtains the suffix for sequences (when sequences are supported by the database, for example, Oracle).
public  StringgetSerializedColumn()
     Obtains the name of the column for storing arrays of bytes representing a Java serialized object.
public  StringgetSerializedIdentifierColumn()
     Obtains the name of the column for serialized object identifiers.
public  StringgetSerializedTable()
     Obtains the name of the table storing serializable objects.
public  StringgetServiceIdentifierColumn()
     Obtains the name of the column for service identifiers.
public  StringgetServiceReplyColumn()
     Obtains the name of the column for service replies.
public  StringgetTimeStampColumn()
     Obtains the name of the column for time stamps.
public  StringgetUserGroupIdentifierColumn()
     Obtains the name of the column for storing user groups identifiers.
public  StringgetUserGroupNameColumn()
     Obtains the name of the column for storing user groups names.
public  StringgetUserGroupsAssignmentsTable()
     Obtains the name of the table storing user assignments to user groups.
public  StringgetUserGroupsTable()
     Obtains the name of the table storing user groups.
public  voidsetCachedServiceReplyTable(String table)
     Sets the name of the table storing cached service replies.
public  voidsetForeignKeyNamePrefix(String prefix)
     Sets the prefix for foreign key naming.
public  voidsetGeneratedIdentifierColumn(String column)
     Obtains the name of the column for generated identifiers.
public  voidsetGeneratedIdentifierSequenceInfix(String infix)
     Sets the extra infix for generated identifiers for sequences (when supported by the database, for example, Oracle).
public  voidsetLoginColumn(String column)
     Sets the name of the column for user login names.
public  voidsetPrimaryKeyNamePrefix(String prefix)
     Sets the prefix for primary key naming.
public  voidsetPropertyIdentifierColumn(String column)
     Sets the name of the column for property identifiers.
public  voidsetSequenceSuffix(String suffix)
     Sets the suffix for sequences (when sequences are supported by the database, for example, Oracle).
public  voidsetSerializedColumn(String column)
     Sets the name of the column for storing arrays of bytes representing a Java serialized object.
public  voidsetSerializedIdentifierColumn(String column)
     Sets the name of the column for serialized object identifiers.
public  voidsetSerializedTable(String table)
     Sets the name of the table storing serializable objects.
public  voidsetServiceIdentifierColumn(String column)
     Sets the name of the column for service identifiers.
public  voidsetServiceReplyColumn(String column)
     Sets the name of the column for service replies.
public  voidsetTimeStampColumn(String column)
     Sets the name of the column for time stamps.
public  voidsetUserGroupIdentifierColumn(String column)
     Sets the name of the column for storing user groups identifiers.
public  voidsetUserGroupNameColumn(String column)
     Sets the name of the column for storing user groups names.
public  voidsetUserGroupsAssignmentsTable(String table)
     Sets the name of the table storing user assignments to user groups.
public  voidsetUserGroupsTable(String table)
     Sets the name of the table storing user groups.


Constructor Detail
DatabaseConventionsConfig
public DatabaseConventionsConfig()(Code)
Constructor for the bean.




Method Detail
getCachedServiceReplyTable
public String getCachedServiceReplyTable()(Code)
Gets the name of the table storing cached service replies. the name of the table storing cached service replies.



getForeignKeyNamePrefix
public String getForeignKeyNamePrefix()(Code)
Obtains the prefix for foreign key naming. the prefix for foreign key naming.



getGeneratedIdentifierColumn
public String getGeneratedIdentifierColumn()(Code)
Obtains the name of the column for generated identifiers. It must correspond to the JDBC type java.sql.Types.BIGINT java.sql.Types.BIGINT , with precision enough to store a Java long integer. the name of the column for generated identifiers.



getGeneratedIdentifierSequenceInfix
public String getGeneratedIdentifierSequenceInfix()(Code)
Obtains the extra infix for generated identifiers for sequences (when supported by the database, for example, Oracle). the extra infix for generated identifiers for sequences.



getLoginColumn
public String getLoginColumn()(Code)
Retuns the name of the column for user login names. It must correspond to the JDBC type java.sql.Types.VARCHAR java.sql.Types.VARCHAR . the name of the column for user login names.



getPrimaryKeyNamePrefix
public String getPrimaryKeyNamePrefix()(Code)
Obtains the prefix for primary key naming. the prefix for primary key naming.



getPropertyIdentifierColumn
public String getPropertyIdentifierColumn()(Code)
Obtains the name of the column for property identifiers. It must correspond to the JDBC type java.sql.Types.BIGINT java.sql.Types.BIGINT , with precision enough to store a Java long integer. the name of the column for property identifiers.



getSequenceSuffix
public String getSequenceSuffix()(Code)
Obtains the suffix for sequences (when sequences are supported by the database, for example, Oracle). the suffix for sequences.



getSerializedColumn
public String getSerializedColumn()(Code)
Obtains the name of the column for storing arrays of bytes representing a Java serialized object. It must correspond to the JDBC type java.sql.Types.BLOB java.sql.Types.BLOB . the name of the column.



getSerializedIdentifierColumn
public String getSerializedIdentifierColumn()(Code)
Obtains the name of the column for serialized object identifiers. It must correspond to the JDBC type java.sql.Types.VARCHAR java.sql.Types.VARCHAR . the name of the column.



getSerializedTable
public String getSerializedTable()(Code)
Obtains the name of the table storing serializable objects.
See Also:   es.udc.mypersonalizer.kernel.model.repository.sql.storers.SerializableObjectStorer the name of the table.



getServiceIdentifierColumn
public String getServiceIdentifierColumn()(Code)
Obtains the name of the column for service identifiers. It must correspond to the JDBC type java.sql.Types.VARCHAR java.sql.Types.VARCHAR . the name of the column.



getServiceReplyColumn
public String getServiceReplyColumn()(Code)
Obtains the name of the column for service replies. It must correspond to the JDBC type java.sql.Types.CLOB java.sql.Types.CLOB . the name of the column.



getTimeStampColumn
public String getTimeStampColumn()(Code)
Obtains the name of the column for time stamps. It must correspond to the JDBC type java.sql.Types.TIMESTAMP java.sql.Types.TIMESTAMP . the name of the column.



getUserGroupIdentifierColumn
public String getUserGroupIdentifierColumn()(Code)
Obtains the name of the column for storing user groups identifiers. It must correspond to the JDBC type java.sql.Types.BIGINT java.sql.Types.BIGINT . the name of the column.



getUserGroupNameColumn
public String getUserGroupNameColumn()(Code)
Obtains the name of the column for storing user groups names. It must correspond to the JDBC type java.sql.Types.VARCHAR java.sql.Types.VARCHAR . the name of the column.



getUserGroupsAssignmentsTable
public String getUserGroupsAssignmentsTable()(Code)
Obtains the name of the table storing user assignments to user groups.
See Also:   es.udc.mypersonalizer.kernel.model.repository.sql.storers.UserGroupStorer the name of the table.



getUserGroupsTable
public String getUserGroupsTable()(Code)
Obtains the name of the table storing user groups.
See Also:   es.udc.mypersonalizer.kernel.model.repository.sql.storers.UserGroupStorer the name of the table.



setCachedServiceReplyTable
public void setCachedServiceReplyTable(String table)(Code)
Sets the name of the table storing cached service replies.
Parameters:
  table - the name of the table storing cached service replies.



setForeignKeyNamePrefix
public void setForeignKeyNamePrefix(String prefix)(Code)
Sets the prefix for foreign key naming.
Parameters:
  prefix - the prefix for foreign key naming.



setGeneratedIdentifierColumn
public void setGeneratedIdentifierColumn(String column)(Code)
Obtains the name of the column for generated identifiers. It must correspond to the JDBC type java.sql.Types.BIGINT java.sql.Types.BIGINT , with precision enough to store a Java long integer.
Parameters:
  column - the name of the column for generated identifiers.



setGeneratedIdentifierSequenceInfix
public void setGeneratedIdentifierSequenceInfix(String infix)(Code)
Sets the extra infix for generated identifiers for sequences (when supported by the database, for example, Oracle).
Parameters:
  infix - the extra infix for generated identifiers for sequences.



setLoginColumn
public void setLoginColumn(String column)(Code)
Sets the name of the column for user login names. It must correspond to the JDBC type java.sql.Types.VARCHAR java.sql.Types.VARCHAR .
Parameters:
  column - the name of the column for user login names.



setPrimaryKeyNamePrefix
public void setPrimaryKeyNamePrefix(String prefix)(Code)
Sets the prefix for primary key naming.
Parameters:
  prefix - the prefix for primary key naming.



setPropertyIdentifierColumn
public void setPropertyIdentifierColumn(String column)(Code)
Sets the name of the column for property identifiers. It must correspond to the JDBC type java.sql.Types.BIGINT java.sql.Types.BIGINT , with precision enough to store a Java long integer.
Parameters:
  column - the name of the column for property identifiers.



setSequenceSuffix
public void setSequenceSuffix(String suffix)(Code)
Sets the suffix for sequences (when sequences are supported by the database, for example, Oracle). the suffix for sequences.
Parameters:
  suffix - the suffix for sequences.



setSerializedColumn
public void setSerializedColumn(String column)(Code)
Sets the name of the column for storing arrays of bytes representing a Java serialized object. It must correspond to the JDBC type java.sql.Types.BLOB java.sql.Types.BLOB .
Parameters:
  column - the name of the column.



setSerializedIdentifierColumn
public void setSerializedIdentifierColumn(String column)(Code)
Sets the name of the column for serialized object identifiers. It must correspond to the JDBC type java.sql.Types.VARCHAR java.sql.Types.VARCHAR .
Parameters:
  column - the name of the column.



setSerializedTable
public void setSerializedTable(String table)(Code)
Sets the name of the table storing serializable objects.
See Also:   es.udc.mypersonalizer.kernel.model.repository.sql.storers.SerializableObjectStorer
Parameters:
  table - the name of the table.



setServiceIdentifierColumn
public void setServiceIdentifierColumn(String column)(Code)
Sets the name of the column for service identifiers. It must correspond to the JDBC type java.sql.Types.VARCHAR java.sql.Types.VARCHAR .
Parameters:
  column - the name of the column.



setServiceReplyColumn
public void setServiceReplyColumn(String column)(Code)
Sets the name of the column for service replies. It must correspond to the JDBC type java.sql.Types.CLOB java.sql.Types.CLOB .
Parameters:
  column - the name of the column.



setTimeStampColumn
public void setTimeStampColumn(String column)(Code)
Sets the name of the column for time stamps. It must correspond to the JDBC type java.sql.Types.TIMESTAMP java.sql.Types.TIMESTAMP .
Parameters:
  column - the name of the column.



setUserGroupIdentifierColumn
public void setUserGroupIdentifierColumn(String column)(Code)
Sets the name of the column for storing user groups identifiers. It must correspond to the JDBC type java.sql.Types.BIGINT java.sql.Types.BIGINT .
Parameters:
  column - the name of the column.



setUserGroupNameColumn
public void setUserGroupNameColumn(String column)(Code)
Sets the name of the column for storing user groups names. It must correspond to the JDBC type java.sql.Types.VARCHAR java.sql.Types.VARCHAR .
Parameters:
  column - the name of the column.



setUserGroupsAssignmentsTable
public void setUserGroupsAssignmentsTable(String table)(Code)
Sets the name of the table storing user assignments to user groups.
See Also:   es.udc.mypersonalizer.kernel.model.repository.sql.storers.UserGroupStorer
Parameters:
  table - the name of the table.



setUserGroupsTable
public void setUserGroupsTable(String table)(Code)
Sets the name of the table storing user groups.
See Also:   es.udc.mypersonalizer.kernel.model.repository.sql.storers.UserGroupStorer
Parameters:
  table - the name of the table.



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

w__w__w__.j_a___v___a_2__s.___co___m___ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.