1 23 24 package org.objectweb.clif.console.lib; 25 26 import org.objectweb.clif.deploy.DeployDefinition; 27 import java.util.Map ; 28 29 30 34 public class ClifDeployDefinition extends DeployDefinition 35 { 36 private boolean isProbe; 37 38 39 public ClifDeployDefinition( 40 String server, 41 String adlDefinition, 42 Map context, 43 String argument, 44 String comment, 45 boolean isProbe) 46 { 47 super(server, adlDefinition, context, argument, comment); 48 this.isProbe = isProbe; 49 } 50 51 52 public boolean isProbe() 53 { 54 return isProbe; 55 } 56 } 57 | Popular Tags |