package org.argeo.security.ui.rap.commands; import org.eclipse.core.commands.AbstractHandler; import org.eclipse.core.commands.ExecutionEvent; import org.eclipse.core.commands.ExecutionException; /** Default action of the user menu */ public class UserMenu extends AbstractHandler { @Override public Object execute(ExecutionEvent event) throws ExecutionException { return null; } }