Class Developer
- java.lang.Object
-
- org.owasp.dependencycheck.xml.pom.Developer
-
- All Implemented Interfaces:
java.io.Serializable
@ThreadSafe public class Developer extends java.lang.Object implements java.io.SerializableRepresents the developer node within the pom.xml.- Author:
- Jeremy Long
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Developer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.StringgetEmail()Get the value of email.java.lang.StringgetId()Get the value of id.java.lang.StringgetName()Get the value of name.java.lang.StringgetOrganization()Get the value of organization.java.lang.StringgetOrganizationUrl()Get the value of organizationUrl.inthashCode()voidsetEmail(java.lang.String email)Set the value of email.voidsetId(java.lang.String id)Set the value of id.voidsetName(java.lang.String name)Set the value of name.voidsetOrganization(java.lang.String organization)Set the value of organization.voidsetOrganizationUrl(java.lang.String organizationUrl)Set the value of organizationUrl.java.lang.StringtoString()
-
-
-
Method Detail
-
getId
public java.lang.String getId()
Get the value of id.- Returns:
- the value of id
-
setId
public void setId(java.lang.String id)
Set the value of id.- Parameters:
id- new value of id
-
getName
public java.lang.String getName()
Get the value of name.- Returns:
- the value of name
-
setName
public void setName(java.lang.String name)
Set the value of name.- Parameters:
name- new value of name
-
getEmail
public java.lang.String getEmail()
Get the value of email.- Returns:
- the value of email
-
setEmail
public void setEmail(java.lang.String email)
Set the value of email.- Parameters:
email- new value of email
-
getOrganization
public java.lang.String getOrganization()
Get the value of organization.- Returns:
- the value of organization
-
setOrganization
public void setOrganization(java.lang.String organization)
Set the value of organization.- Parameters:
organization- new value of organization
-
getOrganizationUrl
public java.lang.String getOrganizationUrl()
Get the value of organizationUrl.- Returns:
- the value of organizationUrl
-
setOrganizationUrl
public void setOrganizationUrl(java.lang.String organizationUrl)
Set the value of organizationUrl.- Parameters:
organizationUrl- new value of organizationUrl
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-