use of edu.stanford.bmir.protege.web.shared.perspective.GetPerspectiveLayoutResult in project webprotege by protegeproject.
the class GetPerspectiveLayoutActionHandler method execute.
@Nonnull
@Override
public GetPerspectiveLayoutResult execute(@Nonnull GetPerspectiveLayoutAction action, @Nonnull ExecutionContext executionContext) {
PerspectiveId perspectiveId = action.getPerspectiveId();
ProjectId projectId = action.getProjectId();
UserId userId = action.getUserId();
PerspectiveLayout perspectiveLayout = perspectiveLayoutStore.getPerspectiveLayout(projectId, userId, perspectiveId);
return new GetPerspectiveLayoutResult(perspectiveLayout);
}
Aggregations