2229ffbfe08c2cd606c305f8934e627548002c9eCraig McDonnell/*
2229ffbfe08c2cd606c305f8934e627548002c9eCraig McDonnell * The contents of this file are subject to the terms of the Common Development and
2229ffbfe08c2cd606c305f8934e627548002c9eCraig McDonnell * Distribution License (the License). You may not use this file except in compliance with the
2229ffbfe08c2cd606c305f8934e627548002c9eCraig McDonnell * License.
2229ffbfe08c2cd606c305f8934e627548002c9eCraig McDonnell *
2229ffbfe08c2cd606c305f8934e627548002c9eCraig McDonnell * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
2229ffbfe08c2cd606c305f8934e627548002c9eCraig McDonnell * specific language governing permission and limitations under the License.
2229ffbfe08c2cd606c305f8934e627548002c9eCraig McDonnell *
2229ffbfe08c2cd606c305f8934e627548002c9eCraig McDonnell * When distributing Covered Software, include this CDDL Header Notice in each file and include
2229ffbfe08c2cd606c305f8934e627548002c9eCraig McDonnell * the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
2229ffbfe08c2cd606c305f8934e627548002c9eCraig McDonnell * Header, with the fields enclosed by brackets [] replaced by your own identifying
2229ffbfe08c2cd606c305f8934e627548002c9eCraig McDonnell * information: "Portions copyright [year] [name of copyright owner]".
2229ffbfe08c2cd606c305f8934e627548002c9eCraig McDonnell *
2229ffbfe08c2cd606c305f8934e627548002c9eCraig McDonnell * Copyright 2016 ForgeRock AS.
2229ffbfe08c2cd606c305f8934e627548002c9eCraig McDonnell */
2229ffbfe08c2cd606c305f8934e627548002c9eCraig McDonnell
721bb987c406979bcfe705fa1ca8d54497d40fcbRobert Wapshott
2229ffbfe08c2cd606c305f8934e627548002c9eCraig McDonnell
415243fbc81341293a852ff6aa14e9608d08685cCraig McDonnell@class FRAIdentityModel;
fb63998ce7684bddab24e10c0b593809df1b7bffCraig McDonnell
916ef74523ecddc8140815c084ab6971ee366bcfCraig McDonnell/*! The storyboard identifier assigned to this view controller. */
916ef74523ecddc8140815c084ab6971ee366bcfCraig McDonnellextern NSString * const FRAAccountsTableViewControllerStoryboardIdentifer;
916ef74523ecddc8140815c084ab6971ee366bcfCraig McDonnell/*! The storyboard identifier for the segue from FRAAccountsTableViewController to FRAAccountTableViewController. */
916ef74523ecddc8140815c084ab6971ee366bcfCraig McDonnellextern NSString * const FRAAccountsTableViewControllerShowAccountSegue;
916ef74523ecddc8140815c084ab6971ee366bcfCraig McDonnell/*! The storyboard identifier for the segue from FRAAccountsTableViewController to FRAQRScanViewController. */
916ef74523ecddc8140815c084ab6971ee366bcfCraig McDonnellextern NSString * const FRAAccountsTableViewControllerScanQrCodeSegue;
916ef74523ecddc8140815c084ab6971ee366bcfCraig McDonnell
2229ffbfe08c2cd606c305f8934e627548002c9eCraig McDonnell/*!
fb63998ce7684bddab24e10c0b593809df1b7bffCraig McDonnell * Controller for Accounts table-view.
2229ffbfe08c2cd606c305f8934e627548002c9eCraig McDonnell */
2229ffbfe08c2cd606c305f8934e627548002c9eCraig McDonnell@interface FRAAccountsTableViewController : UITableViewController
2229ffbfe08c2cd606c305f8934e627548002c9eCraig McDonnell
fb63998ce7684bddab24e10c0b593809df1b7bffCraig McDonnell/*!
415243fbc81341293a852ff6aa14e9608d08685cCraig McDonnell * The identity model. Exposed to allow (setter) dependency injection.
fb63998ce7684bddab24e10c0b593809df1b7bffCraig McDonnell */
415243fbc81341293a852ff6aa14e9608d08685cCraig McDonnell@property (nonatomic, strong) FRAIdentityModel *identityModel;
fb63998ce7684bddab24e10c0b593809df1b7bffCraig McDonnell
3cb6a584a87fa8fec140b0bb20dd91731d13e751Diego Colantoni/*!
3cb6a584a87fa8fec140b0bb20dd91731d13e751Diego Colantoni * Timer for updating notifications count.
3cb6a584a87fa8fec140b0bb20dd91731d13e751Diego Colantoni */
3cb6a584a87fa8fec140b0bb20dd91731d13e751Diego Colantoni@property (strong, nonatomic) NSTimer *timer;
3cb6a584a87fa8fec140b0bb20dd91731d13e751Diego Colantoni
2229ffbfe08c2cd606c305f8934e627548002c9eCraig McDonnell@end