1 package org.jboss.enterprise.deploy.spi.status; 2 3 import javax.enterprise.deploy.shared.ActionType ; 4 import javax.enterprise.deploy.shared.CommandType ; 5 import javax.enterprise.deploy.shared.StateType ; 6 7 import javax.enterprise.deploy.spi.*; 8 import javax.enterprise.deploy.spi.status.DeploymentStatus ; 9 10 16 public class JBoss30DeploymentStatus implements DeploymentStatus 17 { 18 19 24 public int getAction() 25 { 26 return 0; 27 } 28 29 30 35 public int getCommand() 36 { 37 return 0; 38 } 39 40 41 46 public String getMessage() 47 { 48 return null; 49 } 50 51 52 57 public int getState() 58 { 59 return 0; 60 } 61 62 63 68 public boolean isCompleted() 69 { 70 return false; 71 } 72 73 74 79 public boolean isFailed() 80 { 81 return false; 82 } 83 84 85 90 public boolean isRunning() 91 { 92 return false; 93 } 94 } 95 96 | Popular Tags |