1 22 package org.objectweb.petals.tools.ant.managers; 23 24 import org.apache.tools.ant.Task; 25 26 31 public abstract class JBIAntTaskAbstract extends Task { 32 33 36 protected String failOnError = "true"; 37 38 41 protected String host = "localhost"; 42 43 46 protected String password = ""; 47 48 51 protected String port = "8081"; 52 53 56 protected String username = ""; 57 58 public void setFailOnError(String failOnError) { 59 this.failOnError = failOnError; 60 } 61 62 public void setHost(String host) { 63 this.host = host; 64 } 65 66 public void setPassword(String password) { 67 this.password = password; 68 } 69 70 public void setPort(String port) { 71 this.port = port; 72 } 73 74 public void setUsername(String username) { 75 this.username = username; 76 } 77 78 } 79 | Popular Tags |