Package rtslib
[hide private]
[frames] | no frames]

Source Code for Package rtslib

 1  ''' 
 2  This file is part of RTSLib. 
 3  Copyright (c) 2011-2013 by Datera, Inc 
 4   
 5  Licensed under the Apache License, Version 2.0 (the "License"); you may 
 6  not use this file except in compliance with the License. You may obtain 
 7  a copy of the License at 
 8   
 9      http://www.apache.org/licenses/LICENSE-2.0 
10   
11  Unless required by applicable law or agreed to in writing, software 
12  distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 
13  WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 
14  License for the specific language governing permissions and limitations 
15  under the License. 
16  ''' 
17   
18  from root import RTSRoot 
19  from utils import RTSLibError, RTSLibBrokenLink, RTSLibNotInCFS 
20   
21  from target import LUN, MappedLUN 
22  from target import NodeACL, NetworkPortal, TPG, Target 
23  from fabric import FabricModule 
24   
25  from tcm import FileIOStorageObject, BlockStorageObject 
26  from tcm import PSCSIStorageObject, RDMCPStorageObject 
27  from tcm import StorageObjectFactory 
28   
29  __version__ = 'v2.1.fb47-2-g9e336d2' 
30  __author__ = "Jerome Martin <jxm@risingtidesystems.com>" 
31  __url__ = "http://www.risingtidesystems.com" 
32  __description__ = "API for RisingTide Systems generic SCSI target." 
33  __license__ = __doc__ 
34