Class AssemblyData
- java.lang.Object
-
- org.owasp.dependencycheck.xml.assembly.AssemblyData
-
public class AssemblyData extends java.lang.ObjectA simple collection of .NET assembly data as collected from GrokAssembly.- Author:
- Jeremy Long
-
-
Constructor Summary
Constructors Constructor Description AssemblyData()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddNamespace(java.lang.String namespace)Adds a name space.java.lang.StringgetComments()Get the value of comments.java.lang.StringgetCompanyName()Get the value of companyName.java.lang.StringgetError()Get the value of error.java.lang.StringgetFileDescription()Get the value of fileDescription.java.lang.StringgetFileName()Get the value of fileName.java.lang.StringgetFileVersion()Get the value of fileVersion.java.lang.StringgetFullName()Get the value of fullName.java.lang.StringgetInternalName()Get the value of internalName.java.lang.StringgetLegalCopyright()Get the value of legalCopyright.java.lang.StringgetLegalTrademarks()Get the value of legalTrademarks.java.util.List<java.lang.String>getNamespaces()Get the value of namespaces.java.lang.StringgetOriginalFilename()Get the value of originalFilename.java.lang.StringgetProductName()Get the value of productName.java.lang.StringgetProductVersion()Get the value of productVersion.java.lang.StringgetWarning()Get the value of warning.voidsetComments(java.lang.String comments)Set the value of comments.voidsetCompanyName(java.lang.String companyName)Set the value of companyName.voidsetError(java.lang.String error)Set the value of error.voidsetFileDescription(java.lang.String fileDescription)Set the value of fileDescription.voidsetFileName(java.lang.String fileName)Set the value of fileName.voidsetFileVersion(java.lang.String fileVersion)Set the value of fileVersion.voidsetFullName(java.lang.String fullName)Set the value of fullName.voidsetInternalName(java.lang.String internalName)Set the value of internalName.voidsetLegalCopyright(java.lang.String legalCopyright)Set the value of legalCopyright.voidsetLegalTrademarks(java.lang.String legalTrademarks)Set the value of legalTrademarks.voidsetOriginalFilename(java.lang.String originalFilename)Set the value of originalFilename.voidsetProductName(java.lang.String productName)Set the value of productName.voidsetProductVersion(java.lang.String productVersion)Set the value of productVersion.voidsetWarning(java.lang.String warning)Set the value of warning.
-
-
-
Method Detail
-
getError
public java.lang.String getError()
Get the value of error.- Returns:
- the value of error
-
setError
public void setError(java.lang.String error)
Set the value of error.- Parameters:
error- new value of error
-
getCompanyName
public java.lang.String getCompanyName()
Get the value of companyName.- Returns:
- the value of companyName
-
setCompanyName
public void setCompanyName(java.lang.String companyName)
Set the value of companyName.- Parameters:
companyName- new value of companyName
-
getProductName
public java.lang.String getProductName()
Get the value of productName.- Returns:
- the value of productName
-
setProductName
public void setProductName(java.lang.String productName)
Set the value of productName.- Parameters:
productName- new value of productName
-
getProductVersion
public java.lang.String getProductVersion()
Get the value of productVersion.- Returns:
- the value of productVersion
-
setProductVersion
public void setProductVersion(java.lang.String productVersion)
Set the value of productVersion.- Parameters:
productVersion- new value of productVersion
-
getComments
public java.lang.String getComments()
Get the value of comments.- Returns:
- the value of comments
-
setComments
public void setComments(java.lang.String comments)
Set the value of comments.- Parameters:
comments- new value of comments
-
getFileDescription
public java.lang.String getFileDescription()
Get the value of fileDescription.- Returns:
- the value of fileDescription
-
setFileDescription
public void setFileDescription(java.lang.String fileDescription)
Set the value of fileDescription.- Parameters:
fileDescription- new value of fileDescription
-
getFileName
public java.lang.String getFileName()
Get the value of fileName.- Returns:
- the value of fileName
-
setFileName
public void setFileName(java.lang.String fileName)
Set the value of fileName.- Parameters:
fileName- new value of fileName
-
getFileVersion
public java.lang.String getFileVersion()
Get the value of fileVersion.- Returns:
- the value of fileVersion
-
setFileVersion
public void setFileVersion(java.lang.String fileVersion)
Set the value of fileVersion.- Parameters:
fileVersion- new value of fileVersion
-
getInternalName
public java.lang.String getInternalName()
Get the value of internalName.- Returns:
- the value of internalName
-
setInternalName
public void setInternalName(java.lang.String internalName)
Set the value of internalName.- Parameters:
internalName- new value of internalName
-
getLegalCopyright
public java.lang.String getLegalCopyright()
Get the value of legalCopyright.- Returns:
- the value of legalCopyright
-
setLegalCopyright
public void setLegalCopyright(java.lang.String legalCopyright)
Set the value of legalCopyright.- Parameters:
legalCopyright- new value of legalCopyright
-
getLegalTrademarks
public java.lang.String getLegalTrademarks()
Get the value of legalTrademarks.- Returns:
- the value of legalTrademarks
-
setLegalTrademarks
public void setLegalTrademarks(java.lang.String legalTrademarks)
Set the value of legalTrademarks.- Parameters:
legalTrademarks- new value of legalTrademarks
-
getOriginalFilename
public java.lang.String getOriginalFilename()
Get the value of originalFilename.- Returns:
- the value of originalFilename
-
setOriginalFilename
public void setOriginalFilename(java.lang.String originalFilename)
Set the value of originalFilename.- Parameters:
originalFilename- new value of originalFilename
-
getFullName
public java.lang.String getFullName()
Get the value of fullName.- Returns:
- the value of fullName
-
setFullName
public void setFullName(java.lang.String fullName)
Set the value of fullName.- Parameters:
fullName- new value of fullName
-
getNamespaces
public java.util.List<java.lang.String> getNamespaces()
Get the value of namespaces.- Returns:
- the value of namespaces
-
addNamespace
public void addNamespace(java.lang.String namespace)
Adds a name space.- Parameters:
namespace- the namespace to add
-
getWarning
public java.lang.String getWarning()
Get the value of warning.- Returns:
- the value of warning
-
setWarning
public void setWarning(java.lang.String warning)
Set the value of warning.- Parameters:
warning- new value of warning
-
-