NAME

MOBY::Adaptor::moby::Impl::ObjectDataAdapter - An interface definition for MOBY Central underlying data-stores


SYNOPSIS

 use MOBY::Adaptor::moby::DataAdapterI  # implements this interface def


DESCRIPTION

Description here.


AUTHORS

Mark Wilkinson markw_at_ illuminae dot com Dennis Wang oikisai _at_ hotmail dot com BioMOBY Project: http://www.biomoby.org


METHODS

new

 Title     :    new
 Usage     :    
 Function  :
 Returns   :    
 Args      :    
 Notes     :

delete

 Title     :    delete
 Usage     :    my $un = $API->delete(%args)
 Function  :    delete an Object from mobycentral
 Args      :                                    
 Returns   :    1 if deletion was successful
                                0 otherwise
=cut
sub delete{
}

update

 Title     :    update
 Usage     :    my $un = $API->update(%args)
 Function  :    update an Object in mobycentral
 Args      :                                    
 Returns   :    1 if the update was successful
                                0 otherwise
=cut
sub update{
        die "update not applicable with this registry.\n";      
}

query

 Title     :    query
 Usage     :    my $un = $API->query(%args)
 Function  :    retrieve an Object from mobycentral
 Args      :                                    
 Returns   :    1 if deletion was successful
                                0 otherwise
=cut
sub query{
}

##########PRIVATE MEMBER VARIABLES############# {

};

1;