All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jasig.cas.web.flow.LogoutConversionService Maven / Gradle / Ivy

There is a newer version: 4.2.7
Show newest version
package org.jasig.cas.web.flow;

import org.springframework.binding.convert.service.DefaultConversionService;

/**
 * Special conversion service with a {@link CompositeFlowExecutionKeyConverter}.
 *
 * @author Jerome Leleu
 * @since 4.0.0
 */
public class LogoutConversionService extends DefaultConversionService {

    /**
     * Build a new conversion service with a {@link CompositeFlowExecutionKeyConverter}.
     */
    public LogoutConversionService() {
        super();
        addConverter(new CompositeFlowExecutionKeyConverter());
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy