1 17 18 package org.apache.geronimo.deployment.plugin; 19 20 import javax.enterprise.deploy.shared.CommandType ; 21 22 import org.apache.geronimo.deployment.plugin.local.CommandSupport; 23 24 29 public class FailedProgressObject extends CommandSupport { 30 public FailedProgressObject(CommandType command, String message) { 31 super(command); 32 fail(message); 33 } 34 35 public void run() { 36 } 37 } 38 | Popular Tags |