classUtils.resolver.interfaces
Interface Auditor

All Known Implementing Classes:
AuditMaster

public interface Auditor

Version:
2.0 Simple interface to allow for change of audit implementation if necessary/desired.
Author:
Douglas Tillman, VTE Consulting, 12/2002

Method Summary
 void addJarFileToAudit(java.util.jar.JarFile j)
          Adds a .jar file to the audit.
 java.util.Map getDuplicateClassList()
          Standard getter
 java.util.Map getDuplicateJarList()
          Standard getter
 java.util.Map getMasterClassList()
          Standard getter
 java.util.Map getMasterJarList()
          Standard getter
 

Method Detail

addJarFileToAudit

void addJarFileToAudit(java.util.jar.JarFile j)
Adds a .jar file to the audit. Note the parameter isn't java.util.JarFile.

Parameters:
com.vtecinc.model.JarFile -

getMasterJarList

java.util.Map getMasterJarList()
Standard getter

Returns:
Map of all .jar files audited.

getDuplicateJarList

java.util.Map getDuplicateJarList()
Standard getter

Returns:
Map of all duplicate .jar files audited.

getMasterClassList

java.util.Map getMasterClassList()
Standard getter

Returns:
Map of all class files audited.

getDuplicateClassList

java.util.Map getDuplicateClassList()
Standard getter

Returns:
Map of all duplicate class files audited.