SimpleDB::Class::Role::Itemized - Provides utility methods to classes that need to instantiate items.


SimpleDB-Class documentation  | view source Contained in the SimpleDB-Class distribution.

Index


NAME

Top

SimpleDB::Class::Role::Itemized - Provides utility methods to classes that need to instantiate items.

VERSION

Top

version 1.0502

SYNOPSIS

Top

 my $class = $self->determine_item_class(\%attributes);

 my $item = $self->instantiate_item(\%attributes, $id);

 my $item = $self->parse_item($id, \@attributes);

DESCRIPTION

Top

This is a Moose::Role that provides utility methods for instantiating SimpleDB::Class::Items.

METHODS

Top

The following methods are available from this role.

instantiate_item ( attributes, [ id ] )

Instantiates an item based upon it's proper classname and then calls update to populate it's attributes with data.

attributes

A hash reference of attribute data.

id

An optional id to instantiate the item with.

determine_item_class ( attributes )

Given an attribute list we can determine if an item needs to be recast as a different class.

attributes

A hash ref of attributes.

parse_item ( id , attributes )

Converts the attributes section of an item document returned from SimpleDB into a SimpleDB::Class::Item object.

id

The ItemName of the item to create.

attributes

An array of attributes as returned by SimpleDB::Client.

LEGAL

Top


SimpleDB-Class documentation  | view source Contained in the SimpleDB-Class distribution.