Import Upstream version 1.8.5
[hcoop/debian/openafs.git] / src / platform / DARWIN / AFSPreference / AFSBackgrounder / CredentialWindow / CredentialWindowController.h
CommitLineData
805e021f
CE
1//
2// CredentialWindowController.h
3// AFSCommander
4//
5// Created by Claudio on 14/07/07.
6// Copyright 2007 INFN - National Institute of Nuclear Physics. All rights reserved.
7//
8
9#import <Cocoa/Cocoa.h>
10#import "AFSMenuCredentialContoller.h"
11#import "global.h"
12
13@interface CredentialWindowController : NSObject {
14 id credentialView;
15 id afsMenuController;
16 id textEditUserName;
17 id textEditPassword;
18
19 BOOL taken;
20 NSString *uName;
21 NSString *uPwd;
22
23}
24
25- (IBAction) getToken:(id) sender;
26- (IBAction) closePanel:(id) sender;
27- (BOOL) takenToken;
28- (NSString*) uName;
29- (NSString*) uPwd;
30@end