com.partnersoft.v3x.apps.Propagate
Class InstallPackage

java.lang.Object
  extended by com.partnersoft.v3x.apps.Propagate.InstallPackage
All Implemented Interfaces:
java.io.Serializable

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

An installable (or installed) package of files, managed by the Propagator.

See Also:
Serialized Form

Constructor Summary
InstallPackage()
           
 
Method Summary
 java.util.Set getDependencies()
          Other packages that this one depends on.
 java.util.Set getFiles()
          A Set of PackageFile objects.
 java.lang.String getName()
          Name of package.
 boolean getVerifyExisting()
          If set to true, then when propagating, don't trust the existing checksums file to match the installed files.
 void setDependencies(java.util.Set newDeps)
           
 void setFiles(java.util.Set newFiles)
           
 void setName(java.lang.String newName)
           
 void setVerifyExisting(boolean tizit)
           
 void updateInstallation(java.io.File sourceDir, java.io.File destDir, Log log)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

InstallPackage

public InstallPackage()
Method Detail

updateInstallation

public void updateInstallation(java.io.File sourceDir,
                               java.io.File destDir,
                               Log log)

getName

public java.lang.String getName()
Name of package.


setName

public void setName(java.lang.String newName)

getDependencies

public java.util.Set getDependencies()
Other packages that this one depends on.


setDependencies

public void setDependencies(java.util.Set newDeps)

getFiles

public java.util.Set getFiles()
A Set of PackageFile objects.


setFiles

public void setFiles(java.util.Set newFiles)

getVerifyExisting

public boolean getVerifyExisting()
If set to true, then when propagating, don't trust the existing checksums file to match the installed files. Instead, rechecksum each file as it exists in the local install and take action accordingly.


setVerifyExisting

public void setVerifyExisting(boolean tizit)