-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release/29.x: #4235 - Direct access-by-URL to sidebar curation mode sometimes does not work #4235 - Direct access-by-URL to sidebar curation mode sometimes does not work #4235 - Direct access-by-URL to sidebar curation mode sometimes does not work
- Loading branch information
Showing
13 changed files
with
409 additions
and
170 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
72 changes: 72 additions & 0 deletions
72
...ain/java/de/tudarmstadt/ukp/inception/annotation/events/PreparingToOpenDocumentEvent.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
/* | ||
* Licensed to the Technische Universität Darmstadt under one | ||
* or more contributor license agreements. See the NOTICE file | ||
* distributed with this work for additional information | ||
* regarding copyright ownership. The Technische Universität Darmstadt | ||
* licenses this file to you under the Apache License, Version 2.0 (the | ||
* "License"); you may not use this file except in compliance | ||
* with the License. | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
package de.tudarmstadt.ukp.inception.annotation.events; | ||
|
||
import org.springframework.context.ApplicationEvent; | ||
|
||
import de.tudarmstadt.ukp.clarin.webanno.api.annotation.page.AnnotationPageBase; | ||
import de.tudarmstadt.ukp.clarin.webanno.model.SourceDocument; | ||
import de.tudarmstadt.ukp.clarin.webanno.support.wicket.event.HybridApplicationUIEvent; | ||
import de.tudarmstadt.ukp.inception.rendering.editorstate.AnnotatorState; | ||
|
||
/** | ||
* Fire this event to give listeners a chance to look at or even modify the {@link AnnotatorState} | ||
* before actually loading the data. | ||
*/ | ||
public class PreparingToOpenDocumentEvent | ||
extends ApplicationEvent | ||
implements HybridApplicationUIEvent | ||
{ | ||
private static final long serialVersionUID = -5971290341142438144L; | ||
|
||
private final SourceDocument document; | ||
// user who owns/annotates the opened document | ||
private final String documentOwner; | ||
// user who opened the document | ||
private final String sessionOwner; | ||
|
||
public PreparingToOpenDocumentEvent(AnnotationPageBase aSource, SourceDocument aDocument, | ||
String aDocumentOwner, String aSessionOwner) | ||
{ | ||
super(aSource); | ||
document = aDocument; | ||
documentOwner = aDocumentOwner; | ||
sessionOwner = aSessionOwner; | ||
} | ||
|
||
public SourceDocument getDocument() | ||
{ | ||
return document; | ||
} | ||
|
||
public String getSessionOwner() | ||
{ | ||
return sessionOwner; | ||
} | ||
|
||
public String getDocumentOwner() | ||
{ | ||
return documentOwner; | ||
} | ||
|
||
@Override | ||
public AnnotationPageBase getSource() | ||
{ | ||
return (AnnotationPageBase) super.getSource(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.