/[cvs]/nfo/perl/libs/Data/Transfer/Sync.pm
ViewVC logotype

Contents of /nfo/perl/libs/Data/Transfer/Sync.pm

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.15 - (show annotations)
Mon Jan 20 16:58:07 2003 UTC (21 years, 5 months ago) by joko
Branch: MAIN
Changes since 1.14: +7 -2 lines
+ loading new plugin-modules on startup: 'Metadata' and 'StorageInterface' - both refactored from other - already established - plugin-modules

1 ## ------------------------------------------------------------------------
2 ##
3 ## $Id: Sync.pm,v 1.14 2003/01/19 03:25:54 joko Exp $
4 ##
5 ## Copyright (c) 2002 Andreas Motl <andreas.motl@ilo.de>
6 ##
7 ## See COPYRIGHT section in pod text below for usage and distribution rights.
8 ##
9 ## ------------------------------------------------------------------------
10 ## $Log: Sync.pm,v $
11 ## Revision 1.14 2003/01/19 03:25:54 joko
12 ## + modified header
13 ##
14 ## Revision 1.13 2003/01/19 01:23:03 joko
15 ## + new from Data/Transfer/Sync.pm
16 ## ------------------------------------------------------------------------
17
18
19 package Data::Transfer::Sync;
20
21 use strict;
22 use warnings;
23
24 use base qw( DesignPattern::Object );
25 use base qw( DesignPattern::Bridge );
26
27
28 # - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - main
29
30 # get logger instance
31 my $logger = Log::Dispatch::Config->instance;
32
33 sub _init {
34 my $self = shift;
35 $logger->debug( __PACKAGE__ . "->new" );
36 $self->load('Core');
37 $self->load('Metadata');
38 $self->load('API');
39 $self->load('StorageInterface');
40 $self->configure(@_);
41 }
42
43 1;

MailToCvsAdmin">MailToCvsAdmin
ViewVC Help
Powered by ViewVC 1.1.26 RSS 2.0 feed