Example usage for org.springframework.core.convert.converter GenericConverter interface-usage

List of usage examples for org.springframework.core.convert.converter GenericConverter interface-usage

Introduction

In this page you can find the example usage for org.springframework.core.convert.converter GenericConverter interface-usage.

Usage

From source file com.travelport.restneohack.model.domain.EmailAddressConverter.java

public class EmailAddressConverter implements GenericConverter {
    @Override
    public Set<GenericConverter.ConvertiblePair> getConvertibleTypes() {
        return new HashSet<GenericConverter.ConvertiblePair>(
                asList(new GenericConverter.ConvertiblePair(EmailAddress.class, String.class),
                        new GenericConverter.ConvertiblePair(String.class, EmailAddress.class)));

From source file fr.mael.microrss.util.DozerConverter.java

public class DozerConverter implements GenericConverter, InitializingBean, BeanFactoryAware {

    /** Mapper Dozer */
    private Mapper mapper;

    private BeanFactory beanFactory;

From source file oauthsupport.mvc.AccessTokenRequestConverter.java

/**
 * @author Dave Syer
 * 
 */
public class AccessTokenRequestConverter implements GenericConverter {

From source file org.springsecurity.oauth2.converter.AccessTokenRequestConverter.java

/**
 * @author Dave Syer
 * 
 */
public class AccessTokenRequestConverter implements GenericConverter {

From source file com.example.oauth2.loginconsumer.converter.AccessTokenRequestConverter.java

/**
 * @author Dave Syer
 * 
 */
public class AccessTokenRequestConverter implements GenericConverter {

From source file jp.xet.baseunits.spring.StringTimePointGenericConverter.java

/**
 * {@link GenericConverter} implementation from {@link String} to {@link TimePoint}.
 * 
 * @author daisuke
 * @since 2.10
 */

From source file tv.arte.resteventapi.core.querying.convertion.QueryOpParamGenericConverter.java

/**
 * Custom converter for QueryOp
 * 
 * @author Simeon Petev
 * @since 0.1
 */

From source file io.fabric8.spring.boot.converters.FactoryConverter.java

public class FactoryConverter<S, T> implements GenericConverter, BeanFactoryAware {

    private String name;
    private Class<S> sourceType;
    private Class<S> targetType;
    private Class<?> type;

From source file org.springframework.session.data.mongo.AbstractMongoSessionConverter.java

/**
 * Base class for serializing and deserializing session objects. To create custom
 * serializer you have to implement this interface and simply register your class as a
 * bean.
 *
 * @author Jakub Kubrynski

From source file io.fabric8.spring.boot.converters.ServiceConverter.java

@Component
public class ServiceConverter implements GenericConverter {

    @Autowired
    private KubernetesClient kubernetesClient;