Files
MacPass/MacPass/MPTestAssociateRequestHandler.m
2013-06-18 00:11:27 +02:00

27 lines
571 B
Objective-C

//
// MPTestAssociateRequestHanlder.m
// MacPass
//
// Created by Michael Starke on 17.06.13.
// Copyright (c) 2013 HicknHack Software GmbH. All rights reserved.
//
#import "MPTestAssociateRequestHandler.h"
#import "MPDocumentQueryService.h"
@implementation MPTestAssociateRequestHandler
- (NSString *)identifier {
return @"test-associate";
}
- (void)respondTo:(NSDictionary *)data {
MPDocumentQueryService *service = [MPDocumentQueryService defaultService];
if(![service configurationEntry]) {
return; //Nothing to do
}
//TestRequestedData
}
@end