package org.argeo.security.ui.admin.commands; import org.eclipse.core.commands.AbstractHandler; import org.eclipse.core.commands.ExecutionEvent; import org.eclipse.core.commands.ExecutionException; /** * Refreshes the roles view. */ public class RefreshRoles extends AbstractHandler { public Object execute(ExecutionEvent event) throws ExecutionException { return null; } }