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

edu.stanford.protege.webprotege.persistence.String2UserIdConverter Maven / Gradle / Ivy

The newest version!
package edu.stanford.protege.webprotege.persistence;

import edu.stanford.protege.webprotege.common.UserId;
import org.springframework.core.convert.converter.Converter;

/**
 * Matthew Horridge
 * Stanford Center for Biomedical Informatics Research
 * 2021-07-09
 */
public class String2UserIdConverter implements Converter {

    @Override
    public UserId convert(String source) {
        return UserId.valueOf(source);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy