void |
IModuleService.deleteModule(java.lang.String ownerId,
java.lang.String moduleId) |
Deletes the module identified by the tuple (ownerId | moduleId) from the appropriate storage.
|
void |
IModuleService.deleteModule(java.lang.String ownerId,
java.lang.String moduleId,
java.lang.String copyId) |
Deletes the module identified by the tuple (ownerId | moduleId | copyId) from the appropriate storage.
|
void |
IModuleService.deleteModule(Module module) |
Deletes the given module from the appropriate storage.
|
void |
ModuleServiceImpl.deleteModule(java.lang.String ownerId,
java.lang.String moduleId) |
Deletes the module identified by the tuple (ownerId | moduleId) from the appropriate storage.
|
void |
ModuleServiceImpl.deleteModule(java.lang.String ownerId,
java.lang.String moduleId,
java.lang.String copyId) |
Deletes the module identified by the tuple (ownerId | moduleId | copyId) from the appropriate storage.
|
void |
ModuleServiceImpl.deleteModule(Module module) |
Deletes the given module from the appropriate storage.
|
Module |
IModuleService.getModule(java.lang.String ownerId,
java.lang.String moduleId) |
getModule.
|
Module |
IModuleService.getModule(java.lang.String ownerId,
java.lang.String moduleId,
boolean create) |
getModule.
|
Module |
IModuleService.getModule(java.lang.String ownerId,
java.lang.String moduleId,
java.lang.String copyId) |
Same as return getModule(ownerId, moduleId, copyId, false); in current implementation.
|
Module |
IModuleService.getModule(java.lang.String ownerId,
java.lang.String moduleId,
java.lang.String copyId,
boolean create) |
This function retrieves the appropriate Module from the storage and returns it.
|
Module |
ModuleServiceImpl.getModule(java.lang.String ownerId,
java.lang.String moduleId) |
getModule.
|
Module |
ModuleServiceImpl.getModule(java.lang.String ownerId,
java.lang.String moduleId,
boolean create) |
Same as getModule(ownerId, moduleId, default_copy_id, create?)
|
Module |
ModuleServiceImpl.getModule(java.lang.String ownerId,
java.lang.String moduleId,
java.lang.String copyId) |
Same as return getModule(ownerId, moduleId, copyId, false); in current implementation.
|
Module |
ModuleServiceImpl.getModule(java.lang.String ownerId,
java.lang.String moduleId,
java.lang.String copyId,
boolean create) |
This function retrieves the appropriate Module from the storage and returns it.
|
void |
IModuleService.storeModule(Module module) |
Stores the given module in the appropriate storage.
|
void |
ModuleServiceImpl.storeModule(Module module) |
Stores the given module in the appropriate storage.
|