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

edu.stanford.protege.webprotege.dispatch.DispatchServiceResultContainer Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.google.auto.value.AutoValue;
import edu.stanford.protege.webprotege.common.Response;


/**
 * Author: Matthew Horridge
* Stanford University
* Bio-Medical Informatics Research Group
* Date: 24/03/2013 */ @AutoValue public abstract class DispatchServiceResultContainer { @JsonCreator public static DispatchServiceResultContainer create(@JsonProperty("response") Response result) { return new AutoValue_DispatchServiceResultContainer(result); } public abstract Response getResult(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy