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

edu.stanford.protege.webprotege.project.GetAvailableProjectsAction Maven / Gradle / Ivy

There is a newer version: 2.0.2-WHO
Show newest version
package edu.stanford.protege.webprotege.project;

import com.fasterxml.jackson.annotation.JsonClassDescription;
import com.fasterxml.jackson.annotation.JsonTypeName;
import edu.stanford.protege.webprotege.dispatch.Action;

/**
 * Author: Matthew Horridge
* Stanford University
* Bio-Medical Informatics Research Group
* Date: 01/04/2013 */ @JsonTypeName("webprotege.projects.GetAvailableProjects") @JsonClassDescription("Gets the available projects for the authenticated user. " + "An available project is a project that can be opened in WebProtégé.") public record GetAvailableProjectsAction() implements Action { public static final String CHANNEL = "webprotege.projects.GetAvailableProjects"; @Override public String getChannel() { return CHANNEL; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy