fromAccessControlimportClassSecurityInfofromProducts.CMFCoreimportCMFCorePermissionsfromProducts.ERP5Type.XMLObjectimportXMLObjectfromProducts.ERP5TypeimportPropertySheetfromProducts.ERP5.PropertySheet.SortIndeximportSortIndexfromProducts.ERP5Cache.PropertySheet.BaseCachePluginimportBaseCachePluginclassRamCachePlugin(XMLObject):""" RamCachePlugin is a Zope (persistent) representation of the RAM based real cache plugin object. """meta_type='ERP5 Ram Cache Plugin'portal_type='Ram Cache Plugin'isPortalContent=1isRADContent=1allowed_types=()security=ClassSecurityInfo()security.declareProtected(CMFCorePermissions.ManagePortal,'manage_editProperties','manage_changeProperties','manage_propertiesForm',)property_sheets=(PropertySheet.Base,PropertySheet.SimpleItem,PropertySheet.Folder,SortIndex,BaseCachePlugin)