public class

PluginVersionImpl

extends Object
implements PluginVersion
java.lang.Object
   ↳ com.atlassian.jira.plugin.PluginVersionImpl

Summary

Public Constructors
PluginVersionImpl(String key, String name, String version, Date created)
Used to create a representation of a PluginVersion when the persistent id is not known.
PluginVersionImpl(Long id, String key, String name, String version, Date created)
Used to create a representation of a PluginVersion which is stored in database.
Public Methods
boolean equals(Object o)
Date getCreated()
Long getId()
String getKey()
String getName()
String getVersion()
int hashCode()
String toString()
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.atlassian.jira.plugin.PluginVersion

Public Constructors

public PluginVersionImpl (String key, String name, String version, Date created)

Used to create a representation of a PluginVersion when the persistent id is not known.

Parameters
key plugin key.
name plugin name.
version plugin version.
created date this is being created

public PluginVersionImpl (Long id, String key, String name, String version, Date created)

Used to create a representation of a PluginVersion which is stored in database.

Parameters
id the database id of the stored record.
key plugin key.
name plugin name.
version plugin version.
created date this is being created

Public Methods

public boolean equals (Object o)

public Date getCreated ()

public Long getId ()

public String getKey ()

public String getName ()

public String getVersion ()

public int hashCode ()

public String toString ()