package com.onaro.sanscreen.client.view.task.actions; import com.onaro.sanscreen.task.interfaces.data.actions.AddNewStorageAction; /** * Add new storage UI action, the result of refactoring of ActionType to ActionUIType. * * @author Anton Sergeev */ public class AddNewStorageActionUI extends AddNewDeviceActionUI { public static final String RESOURCE_PREFIX = "action." + AddNewStorageAction.TYPE.getName() + "."; //$NON-NLS-1$ //$NON-NLS-2$ public AddNewStorageActionUI() { super(new AddNewStorageAction()); } public String getResourcePrefix() { return RESOURCE_PREFIX; } }