Net::Google::DataAPI::Role::Service - provides base functionalities for Google Data API service


Net-Google-DataAPI documentation  | view source Contained in the Net-Google-DataAPI distribution.

Index


NAME

Top

Net::Google::DataAPI::Role::Service - provides base functionalities for Google Data API service

SYNOPSIS

Top

    package MyService;
    use Any::Moose;
    use Net::Google::DataAPI;
    with 'Net::Google::DataAPI::Role::Service' => {
        service => 'wise',
        source => __PACKAGE__,
        ns => {
            foobar => 'http://example.com/schema#foobar',
        },
    }

    feedurl hoge => (
        is => 'ro',
        isa => 'Str',
        entry_class => 'MyService::Hoge',
        default => 'http://example.com/feed/hoge',
    );

    1;

DESCRIPTION

Top

AUTHOR

Top

Nobuo Danjou <nobuo.danjou@gmail.com>

SEE ALSO

Top

Net::Google::AuthSub

Net::Google::DataAPI


Net-Google-DataAPI documentation  | view source Contained in the Net-Google-DataAPI distribution.