NAME
OAuth::Lite2::Formatter - OAuth 2.0 formatter base class
SYNOPSIS
package OAuth::Lite2::Formatter::Foo;
use parent 'OAuth::Lite2::Formatter';
...
my $formatter = OAuth::Lite2::Formatter::Foo->new;
my $obj = $formatter->parse( $string );
$string = $formatter->format( $obj );
DESCRIPTION
OAuth 2.0 formatter base class
METHODS
name
Accessor for name of this format.
type
Accessor for content-type of this format.
format( $object )
my $formatted_string = $formatter->format( $obj );
parse( $formatted_string )
my $obj = $formatter->parse( $formatted_string );
SEE ALSO
OAuth::Lite2::Formatters OAuth::Lite2::Formatter::JSON OAuth::Lite2::Formatter::XML OAuth::Lite2::Formatter::FormURLEncoded
AUTHOR
Lyo Kato, <lyo.kato@gmail.com>
COPYRIGHT AND LICENSE
Copyright (C) 2010 by Lyo Kato
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.8 or, at your option, any later version of Perl 5 you may have available.