[#3896] ConverterProvider is still experimental

This commit is contained in:
lukaseder 2015-04-14 18:39:09 +02:00
parent c141458372
commit bc9b0c32bb
3 changed files with 13 additions and 2 deletions

View File

@ -302,7 +302,10 @@ public interface Configuration extends Serializable {
/**
* Get the configured <code>ConverterProvider</code> from this
* configuration.
*
* @deprecated - This API is still EXPERIMENTAL. Do not use yet
*/
@Deprecated
ConverterProvider converterProvider();
/**
@ -439,7 +442,9 @@ public interface Configuration extends Serializable {
* @param newConverterProvider The new converter provider to be contained in
* the changed configuration.
* @return The changed configuration.
* @deprecated - This API is still EXPERIMENTAL. Do not use yet
*/
@Deprecated
Configuration set(ConverterProvider newConverterProvider);
/**
@ -562,10 +567,12 @@ public interface Configuration extends Serializable {
* Create a derived configuration from this one, with new converter
* provider.
*
* @param newConverterProvider The new converter provider to
* be contained in the derived configuration.
* @param newConverterProvider The new converter provider to be contained in
* the derived configuration.
* @return The derived configuration.
* @deprecated - This API is still EXPERIMENTAL. Do not use yet
*/
@Deprecated
Configuration derive(ConverterProvider newConverterProvider);
/**

View File

@ -45,7 +45,9 @@ package org.jooq;
* for any combination of types <code>&lt;T></code> and <code>&lt;U></code>.
*
* @author Lukas Eder
* @deprecated - This API is still EXPERIMENTAL. Do not use yet
*/
@Deprecated
public interface ConverterProvider {
/**

View File

@ -60,7 +60,9 @@ import org.jooq.Converters;
/**
* @author Lukas Eder
* @deprecated - This API is still EXPERIMENTAL. Do not use yet
*/
@Deprecated
public class DefaultConverterProvider implements ConverterProvider {
final Graph graph = new Graph();