1 19 20 21 package org.netbeans.modules.j2ee.deployment.plugins.api; 22 23 import java.io.File ; 24 import java.io.IOException ; 25 import java.io.OutputStream ; 26 27 37 public interface AntDeploymentProvider { 38 39 53 void writeDeploymentScript(OutputStream os, Object moduleType) throws IOException ; 54 55 61 File getDeploymentPropertiesFile(); 62 } 63 | Popular Tags |