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

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

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

import edu.stanford.protege.webprotege.common.UserId;


/**
 * Author: Matthew Horridge
* Stanford University
* Bio-Medical Informatics Research Group
* Date: 8/20/13 *

* An implementation of {@link Converter} that reads a {@link UserId} from a {@link String}. *

*/ public class UserIdReadConverter implements Converter { public UserId convert(String userId) { return UserId.valueOf(userId); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy