blob: 72713879b3ce761b5a2469fd507b4b23179c5b96 [file] [log] [blame]
/*
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
*/
#import <Foundation/Foundation.h>
#import "CMISEnums.h"
#import "CMISBinding.h"
#import "CMISAuthenticationProvider.h"
#import "CMISNetworkProvider.h"
// Session param keys
/**
* Key for setting the class that is responsible for converting all kinds of CMIS objects.
* This value of this class can be a Class instance or a NSString instance.
* In the latter case, the string will be used to construct the class using NSClassFromString().
*/
extern NSString * const kCMISSessionParameterObjectConverterClassName;
/**
* Key for setting the value of the cache of links.
* Value should be an NSNumber, indicating the amount of objects whose links will be cached.
*/
extern NSString * const kCMISSessionParameterLinkCacheSize;
// TODO: Temporary, must be extracted into separate project
extern NSString * const kCMISSessionParameterMode;
@interface CMISSessionParameters : NSObject
// Repository connection
@property (nonatomic, strong) NSString *username;
@property (nonatomic, strong) NSString *password;
@property (nonatomic, strong) NSString *repositoryId;
@property (nonatomic, strong) NSURL *atomPubUrl;
@property (nonatomic, assign, readonly) CMISBindingType bindingType;
// Authentication
@property (nonatomic, strong) id<CMISAuthenticationProvider> authenticationProvider;
// Network I/O
@property (nonatomic, strong) id<CMISNetworkProvider> networkProvider;
/** init with binding type
*/
- (id)initWithBindingType:(CMISBindingType)bindingType;
/// Object storage methods
- (NSArray *)allKeys;
- (id)objectForKey:(id)key;
- (id)objectForKey:(id)key withDefaultValue:(id)defaultValue;
- (void)setObject:(id)object forKey:(id)key;
- (void)addEntriesFromDictionary:(NSDictionary *)dictionary;
- (void)removeKey:(id)key;
@end