/core/externals/update-engine/externals/gdata-objectivec-client/Source/Clients/Finance/GDataFeedFinancePosition.m
Objective C | 56 lines | 24 code | 15 blank | 17 comment | 1 complexity | 9c63a9465860a58626c53257cedbf4e9 MD5 | raw file
1/* Copyright (c) 2008 Google Inc. 2* 3* Licensed under the Apache License, Version 2.0 (the "License"); 4* you may not use this file except in compliance with the License. 5* You may obtain a copy of the License at 6* 7* http://www.apache.org/licenses/LICENSE-2.0 8* 9* Unless required by applicable law or agreed to in writing, software 10* distributed under the License is distributed on an "AS IS" BASIS, 11* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12* See the License for the specific language governing permissions and 13* limitations under the License. 14*/ 15 16// 17// GDataFeedFinancePosition.m 18// 19 20#if !GDATA_REQUIRE_SERVICE_INCLUDES || GDATA_INCLUDE_FINANCE_SERVICE 21 22#import "GDataFeedFinancePosition.h" 23#import "GDataEntryFinancePosition.h" 24 25#import "GDataEntryFinancePortfolio.h" // for namespaces 26 27@implementation GDataFeedFinancePosition 28 29+ (GDataFeedFinancePosition *)positionFeed { 30 31 GDataFeedFinancePosition *feed = [self object]; 32 33 [feed setNamespaces:[GDataEntryFinancePortfolio financeNamespaces]]; 34 35 return feed; 36} 37 38+ (NSString *)standardFeedKind { 39 return kGDataCategoryFinancePosition; 40} 41 42+ (void)load { 43 [self registerFeedClass]; 44} 45 46- (Class)classForEntries { 47 return [GDataEntryFinancePosition class]; 48} 49 50+ (NSString *)defaultServiceVersion { 51 return kGDataFinanceDefaultServiceVersion; 52} 53 54@end 55 56#endif // !GDATA_REQUIRE_SERVICE_INCLUDES || GDATA_INCLUDE_FINANCE_SERVICE