![JAR search and dependency download from the Maven repository](/logo.png)
edu.stanford.protege.webprotege.change.ChangeGenerationContext Maven / Gradle / Ivy
The newest version!
package edu.stanford.protege.webprotege.change;
import edu.stanford.protege.webprotege.common.UserId;
import javax.annotation.Nonnull;
import static com.google.common.base.Preconditions.checkNotNull;
/**
* Author: Matthew Horridge
* Stanford University
* Bio-Medical Informatics Research Group
* Date: 22/02/2013
*/
public class ChangeGenerationContext {
@Nonnull
private final UserId userId;
public ChangeGenerationContext(@Nonnull UserId userId) {
this.userId = checkNotNull(userId);
}
@Nonnull
public UserId getUserId() {
return userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy