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.Serializable
Represents 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 boolean
equals(java.lang.Object obj)
java.lang.String
getEmail()
Get the value of email.java.lang.String
getId()
Get the value of id.java.lang.String
getName()
Get the value of name.java.lang.String
getOrganization()
Get the value of organization.java.lang.String
getOrganizationUrl()
Get the value of organizationUrl.int
hashCode()
void
setEmail(java.lang.String email)
Set the value of email.void
setId(java.lang.String id)
Set the value of id.void
setName(java.lang.String name)
Set the value of name.void
setOrganization(java.lang.String organization)
Set the value of organization.void
setOrganizationUrl(java.lang.String organizationUrl)
Set the value of organizationUrl.java.lang.String
toString()
-
-
-
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:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-