-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #341 from xenit-eu/master
Release 2.1.2
- Loading branch information
Showing
4 changed files
with
26 additions
and
5 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
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
16 changes: 16 additions & 0 deletions
16
integration-tests/test-bundle/src/main/java/eu/xenit/de/testing/actions/TestAction.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,16 @@ | ||
package eu.xenit.de.testing.actions; | ||
|
||
import com.github.dynamicextensionsalfresco.actions.annotations.ActionMethod; | ||
import com.github.dynamicextensionsalfresco.actions.annotations.ActionParam; | ||
import org.alfresco.service.cmr.repository.NodeRef; | ||
import org.springframework.stereotype.Component; | ||
|
||
@Component | ||
public class TestAction { | ||
|
||
@ActionMethod(value = "testAction") | ||
public void testAction(final NodeRef nodeRef, @ActionParam("name") final String name) { | ||
throw new UnsupportedOperationException(); | ||
} | ||
|
||
} |