SIKApplicationDescriptor Class Reference

Inherits from SICApplicationDescriptor
Declared in SIKApplicationDescriptor.h
SIKApplicationDescriptor.m

Overview

  • Exposes methods to GET and SET Application Descriptor information as per define in ApplicationDescriptor.xml file by application.


Example:
    {@code

    

        

            
        application_name

            
        application_description

            
        application_version
    
    

        
            
        
            full_path_of_database_descriptor_file
        

    
        
        

            
            full_path_of_service_descriptor

        
    


        
            
        

            full_path_of_sync_descriptor

        

    
        
        

                
            value_of_property
    
        



        
            
        
            full_path_of_library_descriptor_file
        


        

            
        
            full_class_path_of_event_handler_(ISiminovHandler/IDatabaseHandler)
        
    
    
    
    }
    
</p>

*

– addServiceDescriptorPath:

Add service descriptor path

- (void)addServiceDescriptorPath:(NSString *)serviceDescriptorPath

Parameters

serviceDescriptorPath

Path of service descriptor

Discussion

Add service descriptor path

Declared In

SIKApplicationDescriptor.h

– removeServiceDescriptorPath:

Remove service descriptor path

- (void)removeServiceDescriptorPath:(NSString *)serviceDescriptorPath

Parameters

serviceDescriptorPath

Path of service descriptor

Discussion

Remove service descriptor path

Declared In

SIKApplicationDescriptor.h

– getServiceDescriptorPaths

Get all service descriptor paths

- (NSEnumerator *)getServiceDescriptorPaths

Return Value

Path of service descriptor

Discussion

Get all service descriptor paths

Declared In

SIKApplicationDescriptor.h

– containServiceDescriptorPathBasedOnName:

Check whether service descriptor exists or not based on name

- (bool)containServiceDescriptorPathBasedOnName:(NSString *)serviceDescriptorName

Parameters

serviceDescriptorName

Name of service descriptor

Return Value

(true/false) TRUE: If service descriptor exists | FALSE: If service descriptor does not exists

Discussion

Check whether service descriptor exists or not based on name

Declared In

SIKApplicationDescriptor.h

– containServiceDescriptorNameBasedOnPath:

Check whether service descriptor exists or not based on path

- (bool)containServiceDescriptorNameBasedOnPath:(NSString *)serviceDescriptorPath

Parameters

serviceDescriptorPath

Path of service descriptor

Return Value

(true/false) TRUE: If service descriptor exists | FALSE: If service descriptor does not exists

Discussion

Check whether service descriptor exists or not based on path

Declared In

SIKApplicationDescriptor.h

– getServiceDescriptorPathBasedOnName:

Get service descriptor path based on name

- (NSString *)getServiceDescriptorPathBasedOnName:(NSString *)serviceDescriptorName

Parameters

serviceDescriptorName

Name of service descriptor

Return Value

Path of service descriptor

Discussion

Get service descriptor path based on name

Declared In

SIKApplicationDescriptor.h

– addServiceDescriptorNameBasedOnPath:serviceDescriptorName:

Add service descriptor name based on path

- (void)addServiceDescriptorNameBasedOnPath:(NSString *)serviceDescriptorPath serviceDescriptorName:(NSString *)serviceDescriptoName

Parameters

serviceDescriptorPath

Path of service descriptor

serviceDescriptoName

Name of service descriptor

Discussion

Add service descriptor name based on path

Declared In

SIKApplicationDescriptor.h

– removeServiceDescriptorNameBasedOnPath:

Remove service descriptor name based on path

- (void)removeServiceDescriptorNameBasedOnPath:(NSString *)serviceDescriptorPath

Parameters

serviceDescriptorPath

Path of service descriptor

Discussion

Remove service descriptor name based on path

Declared In

SIKApplicationDescriptor.h

– getSyncDescriptorPaths

Get sync descriptor paths

- (NSEnumerator *)getSyncDescriptorPaths

Return Value

Paths of sync descriptors

Discussion

Get sync descriptor paths

Declared In

SIKApplicationDescriptor.h

– addSyncDescriptorPath:

Add sync descriptor path

- (void)addSyncDescriptorPath:(NSString *)syncDescriptorPath

Parameters

syncDescriptorPath

Path of sync descriptor

Discussion

Add sync descriptor path

Declared In

SIKApplicationDescriptor.h

– removeSyncDescriptorPath:

Remove sync descriptor path

- (void)removeSyncDescriptorPath:(NSString *)syncDescriptorPath

Parameters

syncDescriptorPath

Path of sync descriptor

Discussion

Remove sync descriptor path

Declared In

SIKApplicationDescriptor.h

– containSyncDescriptorPath:

Check whether sync descriptor path exists or not

- (bool)containSyncDescriptorPath:(NSString *)syncDescriptorPath

Parameters

syncDescriptorPath

Path of sync descriptor

Return Value

(true/false) TRUE: If sync descriptor path exists | FALSE: If sync descriptor path does not exists

Discussion

Check whether sync descriptor path exists or not

Declared In

SIKApplicationDescriptor.h

– getSyncDescriptors

Get all sync descriptors

- (NSEnumerator *)getSyncDescriptors

Return Value

Sync Descriptors

Discussion

Get all sync descriptors

Declared In

SIKApplicationDescriptor.h

– getSyncDescriptorBasedOnPath:

Get sync descriptor based on path

- (SIKSyncDescriptor *)getSyncDescriptorBasedOnPath:(NSString *)syncDescriptorPath

Parameters

syncDescriptorPath

Path of sync descriptor

Return Value

Sync Descriptor

Discussion

Get sync descriptor based on path

Declared In

SIKApplicationDescriptor.h

– getSyncDescriptorBasedOnName:

Get sync descriptor based on name

- (SIKSyncDescriptor *)getSyncDescriptorBasedOnName:(NSString *)syncDescriptorName

Parameters

syncDescriptorName

Name of sync descriptor

Return Value

Sync Descriptor

Discussion

Get sync descriptor based on name

Declared In

SIKApplicationDescriptor.h

– addSyncDescriptor:syncDescriptor:

Add sync descriptor

- (void)addSyncDescriptor:(NSString *)syncDescriptorPath syncDescriptor:(SIKSyncDescriptor *)syncDescriptor

Parameters

syncDescriptorPath

Path of sync descriptor

syncDescriptor

Sync Descriptor

Discussion

Add sync descriptor

Declared In

SIKApplicationDescriptor.h

– containSyncDescriptor:

Check whether sync descriptor exists or not

- (bool)containSyncDescriptor:(NSString *)syncDescriptorName

Parameters

syncDescriptorName

Name of sync descriptor

Return Value

(true/false) TRUE: If sync descriptor exists | FALSE: If sync descriptor does not exists

Discussion

Check whether sync descriptor exists or not

Declared In

SIKApplicationDescriptor.h

– removeSyncDescriptor:

Remove sync descriptor

- (void)removeSyncDescriptor:(NSString *)syncDescriptorName

Parameters

syncDescriptorName

Name of sync descriptor

Discussion

Remove sync descriptor

Declared In

SIKApplicationDescriptor.h

– getNotificationDescriptor

Get notification descriptor

- (SIKNotificationDescriptor *)getNotificationDescriptor

Return Value

Notification Descriptor

Discussion

Get notification descriptor

Declared In

SIKApplicationDescriptor.h

– setNotificationDescriptor:

Set notification descriptor

- (void)setNotificationDescriptor:(SIKNotificationDescriptor *)notificationDescriptor

Parameters

notificationDescriptor

Notification Descriptor

Discussion

Set notification descriptor

Declared In

SIKApplicationDescriptor.h