00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #import "SimpleDBReplaceableItem.h"
00017
00018
00023 @interface SimpleDBBatchPutAttributesRequest : NSObject
00024
00025 {
00026 NSString* domainName;
00027 NSMutableArray* items;
00028
00029 }
00030
00031
00035 @property (nonatomic, retain) NSString* domainName;
00036
00040 @property (nonatomic, retain) NSMutableArray* items;
00041
00042
00047 -(id)init;
00048
00057 -(id)initWithDomainName:(NSString*)theDomainName andItems:(NSMutableArray*)theItems;
00058
00063 -(void)addItem:(SimpleDBReplaceableItem*)item;
00064
00071 -(NSString*)description;
00072
00073
00074 @end
00075