AcquireViewController.h
1 // 2 // Copyright (c) 2013 Apple, Inc. All rights reserved. 3 // 4 5 #import <Foundation/Foundation.h> 6 #import "CredentialTableController.h" 7 8 @interface AcquireViewController : UIViewController <GSSCredentialsChangeNotification> 9 10 @property (weak) IBOutlet UITextField *username; 11 @property (weak) IBOutlet UISwitch *doPassword; 12 @property (weak) IBOutlet UITextField *password; 13 @property (weak) IBOutlet UISwitch *doCertificate; 14 @property (weak) IBOutlet UILabel *certificateLabel; 15 @property (weak) IBOutlet UILabel *statusLabel; 16 @property (weak) IBOutlet UITextField *kdchostname; 17 18 19 @property (weak) IBOutlet UITableView *credentialsTableView; 20 @property (assign) CredentialTableController *credentialsTableController; 21 22 @end