NAME

Net::OAuth::LP::Model::CVE - Launchpad.net cve Interface

SYNOPSIS

use Net::OAuth::LP::Client;
use Net::OAuth::LP::Model;
my $c = Net::OAuth::LP::Client->new;
$c->staging(1);

my $model = Net::OAuth::LP::Model->new($c);
my $cve = $model->namespace('CVE')->by_seq('XXXX-XXXX');

say "Title: ". $cve->title;
say "Desc:  ". $cve->description;

DESCRIPTION

CVE model for Launchpad.net Bugs.

ATTRIBUTES

cve

CVE object.

METHODS

by_sequence

This needs to be called before any of the below methods. Takes a CVE sequence number, e.g. 2011-3188.

sequence

Returns cve number.

title

Returns title of cve.

bugs

Returns a list of entries associated with cve

Returns browseable URL link to resource.

description

Returns cve description

status

Returns whether the cve is of candidate, entry, deprecated

date_created

Returns date cve was created

date_modified

Return date of last modification

display_name

Returns brief description of the ref and state

url

Returns URL to site that contains CVE data for this CVE reference.

AUTHOR

Adam Stokes, <adamjs at cpan.org>

BUGS

Report bugs to https://github.com/battlemidget/Net-OAuth-LP/issues.

DEVELOPMENT

Repository

http://github.com/battlemidget/Net-OAuth-LP

SUPPORT

You can find documentation for this module with the perldoc command.

perldoc Net::OAuth::LP

SEE ALSO

COPYRIGHT

Copyright 2013-2014 Adam Stokes

LICENSE

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.