/** * */ package net.conselldemallorca.helium.webapp.mvc; /** * Command per executar scripts als expedients * * @author Limit Tecnologies <limit@limit.es> */ public class ExpedientEinesScriptCommand { private String script; public String getScript() { return script; } public void setScript(String script) { this.script = script; } }