]> git.argeo.org Git - lgpl/argeo-commons.git/blob - rap/commands/UserMenu.java
Prepare next development cycle
[lgpl/argeo-commons.git] / rap / commands / UserMenu.java
1 package org.argeo.security.ui.rap.commands;
2
3 import org.eclipse.core.commands.AbstractHandler;
4 import org.eclipse.core.commands.ExecutionEvent;
5 import org.eclipse.core.commands.ExecutionException;
6
7 /** Default action of the user menu */
8 public class UserMenu extends AbstractHandler {
9
10 @Override
11 public Object execute(ExecutionEvent event) throws ExecutionException {
12 return null;
13 }
14
15 }