View Javadoc
1   package com.atlassian.activeobjects.confluence.hibernate;
2   
3   import net.sf.hibernate.dialect.Dialect;
4   
5   /**
6    * Allows to find the current Hibernate dialect
7    */
8   public interface DialectExtractor {
9       /**
10       * Gets the dialect currently used.
11       *
12       * @return the currently used dialect. {@code null} if the information could not be resolved/extracted.
13       */
14      Class<? extends Dialect> getDialect();
15  }