/addon-jpa/addon/src/main/java/org/springframework/roo/addon/jpa/addon/JpaOperations.java

http://github.com/SpringSource/spring-roo · Java · 164 lines · 38 code · 16 blank · 110 comment · 0 complexity · 183414a5cee039924382cb5a9273a984 MD5 · raw file

  1. package org.springframework.roo.addon.jpa.addon;
  2. import org.apache.commons.lang3.tuple.Pair;
  3. import org.springframework.roo.addon.jpa.addon.entity.IdentifierStrategy;
  4. import org.springframework.roo.addon.jpa.addon.entity.JpaEntityMetadata.RelationInfo;
  5. import org.springframework.roo.classpath.details.ClassOrInterfaceTypeDetails;
  6. import org.springframework.roo.classpath.details.FieldMetadata;
  7. import org.springframework.roo.classpath.details.annotations.AnnotationMetadataBuilder;
  8. import org.springframework.roo.classpath.operations.InheritanceType;
  9. import org.springframework.roo.model.JavaType;
  10. import org.springframework.roo.project.Feature;
  11. import org.springframework.roo.project.maven.Pom;
  12. import java.util.List;
  13. import java.util.SortedSet;
  14. /**
  15. * Provides JPA configuration and entity operations.
  16. *
  17. * @author Ben Alex
  18. * @author Alan Stewart
  19. * @author Juan Carlos García
  20. * @since 1.0
  21. */
  22. public interface JpaOperations extends Feature {
  23. /**
  24. * This method is responsible for managing all JPA related artifacts
  25. * (META-INF/persistence.xml, applicationContext.xml, database.properties
  26. * and the project pom.xml) for the specified module
  27. *
  28. * @param ormProvider the ORM provider selected (Hibernate, OpenJPA,
  29. * EclipseLink)
  30. * @param database the database (HSQL, H2, MySql, etc)
  31. * @param module the module where to install the persistence
  32. * @param jndi the JNDI datasource
  33. * @param hostName the host name where the database is
  34. * @param databaseName the name of the database
  35. * @param userName the username to connect to the database
  36. * @param password the password to connect to the database
  37. * @param profile string with profile where current jpa persistence will be applied.
  38. * @param force boolean that forces configuration if exists some previous configuration
  39. */
  40. void configureJpa(OrmProvider ormProvider, JdbcDatabase database, Pom module, String jndi,
  41. String hostName, String databaseName, String userName, String password, String profile,
  42. boolean force);
  43. /**
  44. * Indicates whether JPA can be installed in the currently focused module.
  45. *
  46. * @return <code>false</code> if no module has the focus
  47. */
  48. boolean isJpaInstallationPossible();
  49. /**
  50. * Check if jpa is installed
  51. *
  52. * @return
  53. */
  54. boolean isJpaInstalled();
  55. /**
  56. * Creates a new JPA embeddable class.
  57. *
  58. * @param name the name of the embeddable class (required)
  59. * @param serializable whether the class implements
  60. * {@link java.io.Serializable}
  61. */
  62. void newEmbeddableClass(JavaType name, boolean serializable);
  63. /**
  64. * Creates a new entity.
  65. *
  66. * @param name the entity name (required)
  67. * @param createAbstract indicates whether the entity will be an abstract
  68. * class
  69. * @param superclass the super class of the entity
  70. * @param implementsType the interface to implement
  71. * @param identifierField
  72. * @param identifierType
  73. * @param identifierColumn
  74. * @param sequenceName
  75. * @param identifierStrategy
  76. * @param versionField
  77. * @param versionType
  78. * @param versionColumn
  79. * @param inheritanceType
  80. * @param annotations the entity's annotations
  81. */
  82. void newEntity(JavaType name, boolean createAbstract, JavaType superclass,
  83. JavaType implementsType, String identifierField, JavaType identifierType,
  84. String identifierColumn, String sequenceName, IdentifierStrategy identifierStrategy,
  85. String versionField, JavaType versionType, String versionColumn,
  86. InheritanceType inheritanceType, List<AnnotationMetadataBuilder> annotations);
  87. /**
  88. * Updates an existing embeddable class to a JPA identifier class.
  89. *
  90. * @param identifierType the identifier type
  91. * @param identifierField the identifier field name
  92. * @param identifierColumn the identifier column name
  93. */
  94. void updateEmbeddableToIdentifier(JavaType identifierType, String identifierField,
  95. String identifierColumn);
  96. /**
  97. * Deletes an existing entity from project.
  98. *
  99. * @param entity the JavaType representing the file to be deleted from project
  100. */
  101. void deleteEntity(JavaType entity);
  102. SortedSet<String> getDatabaseProperties(String profile);
  103. /**
  104. * Gets field of an entity which defines a composition relation which current entity
  105. * is the child part.
  106. *
  107. * @param entity
  108. * @return null if entity is not the part of a composition relation. Otherwise returns current entity field metadata and relation info (from parent)
  109. */
  110. Pair<FieldMetadata, RelationInfo> getFieldChildPartOfCompositionRelation(JavaType entity);
  111. /**
  112. * Gets field of an entity which defines a composition relation which current entity
  113. * is the child part.
  114. *
  115. * @param entity
  116. * @return null if entity is not the part of a composition relation. Otherwise returns current entity field metadata and relation info (from parent)
  117. */
  118. Pair<FieldMetadata, RelationInfo> getFieldChildPartOfCompositionRelation(
  119. ClassOrInterfaceTypeDetails entityCdi);
  120. /**
  121. * Add datasource dependency for testing purposes in a module with repository classes.
  122. * This method can be called when installing/changing persistence database or when
  123. * adding repositories to the project.
  124. *
  125. * @param repositoryModuleName the module name where the dependency should be added.
  126. * @param profile the profile used to obtain the datasource property from
  127. * spring config file.
  128. * @param databaseConfigPrefix the database prefix used to find the right dependency
  129. * in the configuration file. It could be null if called from repository commands.
  130. */
  131. void addDatabaseDependencyWithTestScope(String repositoryModuleName, String profile,
  132. String databaseConfigPrefix);
  133. /**
  134. * Gets field of an entity which current entity is the child part of a relation.
  135. *
  136. * @param entity
  137. * @return list returns current entity field metadata and relation info (from parent)
  138. */
  139. List<Pair<FieldMetadata, RelationInfo>> getFieldChildPartOfRelation(JavaType entity);
  140. /**
  141. * Gets field of an entity which current entity is the child part of a relation.
  142. *
  143. * @param entityCdi
  144. * @return list returns current entity field metadata and relation info (from parent)
  145. */
  146. List<Pair<FieldMetadata, RelationInfo>> getFieldChildPartOfRelation(
  147. ClassOrInterfaceTypeDetails entityCdi);
  148. }