Fix bugs and improve folder filter UI
[pithos-ios] / Classes / Provider.h
1 //
2 //  Provider.h
3 //  OpenStack
4 //
5 //  Created by Mike Mayo on 9/30/10.
6 //  The OpenStack project is provided under the Apache 2.0 license.
7 //
8
9 #import <Foundation/Foundation.h>
10
11 @interface Provider : NSObject <NSCoding> {
12     // the name of the provider (example: okeanos)
13     NSString *name;
14     
15     // endpoint for authentication (example: https://pithos.okeanos.grnet.gr )
16     NSURL *authEndpointURL;
17 }
18
19 + (NSArray *)providers;
20 - (BOOL)isGRNet;
21
22 @property (nonatomic, retain) NSString *name;
23 @property (nonatomic, retain) NSURL *authEndpointURL;
24
25 @end