com.pmease.quickbuild.repository
Class QuickBuildModuleFacade

java.lang.Object
  extended bycom.pmease.quickbuild.repository.QuickBuildModuleFacade
All Implemented Interfaces:
java.io.Serializable

public class QuickBuildModuleFacade
extends java.lang.Object
implements java.io.Serializable

Facade class for QuickBuildModule.

See Also:
Serialized Form

Constructor Summary
QuickBuildModuleFacade()
           
 
Method Summary
 java.lang.String getDestPath()
          OGNL: Specify the directory relative to the checkouts directory of current configuration, where the matching artifacts under the specified source path should be retrieved to.
 java.lang.String getFileNamePatterns()
          OGNL: Specify file name patterns of artifacts to retrieve, for example: *.zip, ${build.version}*.zip, ${build.version}.
 java.lang.String getSrcPath()
          OGNL: Specify source path to retrieve artifacts from.
 boolean isRetrieveRecursively()
          OGNL: Whether or not to retrieve matched artifacts recursively under specified source path.
 void setDestPath(java.lang.String destPath)
           
 void setFileNamePatterns(java.lang.String fileNamePatterns)
           
 void setRetrieveRecursively(boolean retrieveRecursively)
           
 void setSrcPath(java.lang.String srcPath)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

QuickBuildModuleFacade

public QuickBuildModuleFacade()
Method Detail

getSrcPath

public java.lang.String getSrcPath()
OGNL: Specify source path to retrieve artifacts from. This path is relative to artifacts directory of specified build above. So \".\" will refer to the artifacts directory itself.


setSrcPath

public void setSrcPath(java.lang.String srcPath)

getFileNamePatterns

public java.lang.String getFileNamePatterns()
OGNL: Specify file name patterns of artifacts to retrieve, for example: *.zip, ${build.version}*.zip, ${build.version}.*. Multiple patterns can be specified as long as they are seperated by spaces(Of course, a single pattern includes spaces should be quoted). If left empty, all files will be retrieved.


setFileNamePatterns

public void setFileNamePatterns(java.lang.String fileNamePatterns)

isRetrieveRecursively

public boolean isRetrieveRecursively()
OGNL: Whether or not to retrieve matched artifacts recursively under specified source path.


setRetrieveRecursively

public void setRetrieveRecursively(boolean retrieveRecursively)

getDestPath

public java.lang.String getDestPath()
OGNL: Specify the directory relative to the checkouts directory of current configuration, where the matching artifacts under the specified source path should be retrieved to. If left empty, retrieved code will be put into directory defined by the source path relative to the checkouts directory.


setDestPath

public void setDestPath(java.lang.String destPath)


Copyright © 2005 PMEase Inc. All Rights Reserved.