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

edu.stanford.protege.webprotege.persistence.UserId2StringConverter 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 UserId2StringConverter implements Converter {

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy