edu.stanford.protege.webprotege.mail.GetEmailAddressAction Maven / Gradle / Ivy
The newest version!
package edu.stanford.protege.webprotege.mail;
import com.fasterxml.jackson.annotation.JsonTypeName;
import edu.stanford.protege.webprotege.common.UserId;
import edu.stanford.protege.webprotege.dispatch.Action;
/**
* Author: Matthew Horridge
* Stanford University
* Bio-Medical Informatics Research Group
* Date: 06/11/2013
*/
@JsonTypeName("webprotege.users.GetEmailAddress")
public record GetEmailAddressAction(UserId userId) implements Action {
public static final String CHANNEL = "webprotege.users.GetEmailAddress";
public static GetEmailAddressAction create(UserId userId) {
return new GetEmailAddressAction(userId);
}
@Override
public String getChannel() {
return CHANNEL;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy