1 package org.jboss.enterprise.deploy.spi.status; 2 3 import javax.enterprise.deploy.spi.*; 4 import javax.enterprise.deploy.spi.exceptions.OperationUnsupportedException ; 5 import javax.enterprise.deploy.spi.status.*; 6 7 17 public class JBoss30ProgressObject implements ProgressObject 18 { 19 20 26 public void addProgressListener(ProgressListener pol) { } 27 28 29 30 36 public void cancel() throws OperationUnsupportedException { } 37 38 39 45 public ClientConfiguration getClientConfiguration(TargetModuleID id) 46 { 47 return null; 48 } 49 50 51 56 public DeploymentStatus getDeploymentStatus() 57 { 58 return null; 59 } 60 61 62 67 public TargetModuleID[] getResultTargetModuleIDs() 68 { 69 return null; 70 } 71 72 73 74 79 public boolean isCancelSupported() 80 { 81 return false; 82 } 83 84 85 86 91 public boolean isStopSupported() 92 { 93 return false; 94 } 95 96 97 98 104 public void removeProgressListener(ProgressListener pol) { } 105 106 107 108 114 public void stop() throws OperationUnsupportedException { } 115 116 } 117 118 | Popular Tags |