summaryrefslogblamecommitdiffstats
path: root/installer/OpenSLX/OSExport/BlockDevice/Base.pm
blob: 938dc6db3b0bfbb0a3d517ced8a4d28aef8e4e37 (plain) (tree)





























































                                                                                                 
# Copyright (c) 2006, 2007 - OpenSLX GmbH
#
# This program is free software distributed under the GPL version 2.
# See http://openslx.org/COPYING
#
# If you have any feedback please consult http://openslx.org/feedback and
# send your suggestions, praise, or complaints to feedback@openslx.org
#
# General information about OpenSLX can be found at http://openslx.org/
# -----------------------------------------------------------------------------
# Base.pm
#	- provides empty base of the OpenSLX OSExport::BlockDevice API.
# -----------------------------------------------------------------------------
package OpenSLX::OSExport::BlockDevice::Base;

use vars qw($VERSION);
$VERSION = 1.01;		# API-version . implementation-version

use strict;
use Carp;

use OpenSLX::Basics;
use OpenSLX::Utils;

################################################################################
### interface methods
################################################################################
sub new
{
	confess "Creating OpenSLX::OSExport::BlockDevice::Base-objects directly makes no sense!";
}

sub initialize
{
}

sub getExportPort
{
}

sub generateExportURI
{
}

sub requiredBlockDeviceModules
{
}

sub showExportConfigInfo
{
}

1;
################################################################################

=pod

=head1 NAME

OpenSLX::OSExport::BlockDevice::Base - the base class for all OSExport::BlockDevices

=cut