blackberry.com
BlackBerry Dynamics
Runtime library for macOS applications
from the application developer portal

GDAppServer.h

Go to the documentation of this file.
00001 /*
00002  * (c) 2016 Good Technology Corporation. All rights reserved.
00003  */
00004 
00005 #pragma once
00006 
00007 #import <Foundation/Foundation.h>
00008 
00017 @interface GDAppServer : NSObject
00018 
00019 {}
00020 
00021 - (instancetype)initWithServer:(NSString*)server andPort:(NSNumber*)port andPriority:(NSNumber*)priority;
00022 
00024 @property (nonatomic, strong, readonly) NSString* server;
00025 
00027 @property (nonatomic, strong, readonly) NSNumber* port;
00028 
00034 @property (nonatomic, strong, readonly) NSNumber* priority;
00035 
00036 @end