summaryrefslogtreecommitdiffstats
path: root/src/software/openlmi/software/cimom_entry.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/software/openlmi/software/cimom_entry.py')
-rw-r--r--src/software/openlmi/software/cimom_entry.py19
1 files changed, 13 insertions, 6 deletions
diff --git a/src/software/openlmi/software/cimom_entry.py b/src/software/openlmi/software/cimom_entry.py
index a259ff0..a598fb1 100644
--- a/src/software/openlmi/software/cimom_entry.py
+++ b/src/software/openlmi/software/cimom_entry.py
@@ -36,6 +36,10 @@ from openlmi.software.LMI_InstalledSoftwareIdentity import \
LMI_InstalledSoftwareIdentity
from openlmi.software.LMI_SoftwareIdentityResource import \
LMI_SoftwareIdentityResource
+from openlmi.software.LMI_ResourceForSoftwareIdentity import \
+ LMI_ResourceForSoftwareIdentity
+from openlmi.software.LMI_HostedSoftwareIdentityResource import \
+ LMI_HostedSoftwareIdentityResource
from openlmi.software.yumdb import YumDB
def get_providers(env):
@@ -45,12 +49,15 @@ def get_providers(env):
cmpi_logging.LogManager(env)
providers = {
- "LMI_SoftwareIdentity" : LMI_SoftwareIdentity(env),
- "LMI_SystemSoftwareCollection" : LMI_SystemSoftwareCollection(env),
- "LMI_HostedSoftwareCollection" : LMI_HostedSoftwareCollection(env),
- "LMI_MemberOfSoftwareCollection" : LMI_MemberOfSoftwareCollection(env),
- "LMI_InstalledSoftwareIdentity" : LMI_InstalledSoftwareIdentity(env),
- "LMI_SoftwareIdentityResource" : LMI_SoftwareIdentityResource(env)
+ "LMI_SoftwareIdentity" : LMI_SoftwareIdentity(env),
+ "LMI_SystemSoftwareCollection" : LMI_SystemSoftwareCollection(env),
+ "LMI_HostedSoftwareCollection" : LMI_HostedSoftwareCollection(env),
+ "LMI_MemberOfSoftwareCollection" : LMI_MemberOfSoftwareCollection(env),
+ "LMI_InstalledSoftwareIdentity" : LMI_InstalledSoftwareIdentity(env),
+ "LMI_SoftwareIdentityResource" : LMI_SoftwareIdentityResource(env),
+ "LMI_ResourceForSoftwareIdentity" : LMI_ResourceForSoftwareIdentity(env),
+ "LMI_HostedSoftwareIdentityResource" :
+ LMI_HostedSoftwareIdentityResource(env)
}
return providers