FRAAccountsTableViewController.h revision 916ef74523ecddc8140815c084ab6971ee366bcf
c6d434b8e7bad0ebe8337df307dcad1e78b6a80fChristian Maeder/*
e9458b1a7a19a63aa4c179f9ab20f4d50681c168Jens Elkner * The contents of this file are subject to the terms of the Common Development and
c6d434b8e7bad0ebe8337df307dcad1e78b6a80fChristian Maeder * Distribution License (the License). You may not use this file except in compliance with the
c6d434b8e7bad0ebe8337df307dcad1e78b6a80fChristian Maeder * License.
98890889ffb2e8f6f722b00e265a211f13b5a861Corneliu-Claudiu Prodescu *
c6d434b8e7bad0ebe8337df307dcad1e78b6a80fChristian Maeder * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
c6d434b8e7bad0ebe8337df307dcad1e78b6a80fChristian Maeder * specific language governing permission and limitations under the License.
c6d434b8e7bad0ebe8337df307dcad1e78b6a80fChristian Maeder *
c6d434b8e7bad0ebe8337df307dcad1e78b6a80fChristian Maeder * When distributing Covered Software, include this CDDL Header Notice in each file and include
c6d434b8e7bad0ebe8337df307dcad1e78b6a80fChristian Maeder * the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
c6d434b8e7bad0ebe8337df307dcad1e78b6a80fChristian Maeder * Header, with the fields enclosed by brackets [] replaced by your own identifying
c6d434b8e7bad0ebe8337df307dcad1e78b6a80fChristian Maeder * information: "Portions copyright [year] [name of copyright owner]".
987ce96cd048cfd38348a3ec0095aeee9961d138Christian Maeder *
c6d434b8e7bad0ebe8337df307dcad1e78b6a80fChristian Maeder * Copyright 2016 ForgeRock AS.
3ea8b51d05f08dee3361547f375f52262778517fSimon Ulbricht */
c6d434b8e7bad0ebe8337df307dcad1e78b6a80fChristian Maeder
8d278664fc900110a7ed9610b5fe7d7cc08270e5Simon Ulbricht#import <UIKit/UIKit.h>
b7af683d179f4e5bf09b60a97ab0b2ed298b97ebChristian Maeder
3ea8b51d05f08dee3361547f375f52262778517fSimon Ulbricht@class FRAIdentityModel;
c4b10387502bcfa6aa4f72cdd2776448bbe05913Christian Maeder
f9a67b01c18a9a09cb2fcf9d461e35b1afcef809Simon Ulbricht/*! The storyboard identifier assigned to this view controller. */
f9a67b01c18a9a09cb2fcf9d461e35b1afcef809Simon Ulbrichtextern NSString * const FRAAccountsTableViewControllerStoryboardIdentifer;
b7af683d179f4e5bf09b60a97ab0b2ed298b97ebChristian Maeder/*! The storyboard identifier for the segue from FRAAccountsTableViewController to FRAAccountTableViewController. */
9af5436515bb90ca0ed200102af2ca056a106133Christian Maederextern NSString * const FRAAccountsTableViewControllerShowAccountSegue;
b7af683d179f4e5bf09b60a97ab0b2ed298b97ebChristian Maeder/*! The storyboard identifier for the segue from FRAAccountsTableViewController to FRAQRScanViewController. */
fe717c8abf043c8677a2972ad560b3e739d7ba0dChristian Maederextern NSString * const FRAAccountsTableViewControllerScanQrCodeSegue;
fe717c8abf043c8677a2972ad560b3e739d7ba0dChristian Maeder
74f3e694edeaaf8add16f3e4769927ef17fbcbf6Christian Maeder/*!
0f904f53b2c722d108ed88cec2a1bf66f7e45317Simon Ulbricht * Controller for Accounts table-view.
0f904f53b2c722d108ed88cec2a1bf66f7e45317Simon Ulbricht */
b7af683d179f4e5bf09b60a97ab0b2ed298b97ebChristian Maeder@interface FRAAccountsTableViewController : UITableViewController
b7af683d179f4e5bf09b60a97ab0b2ed298b97ebChristian Maeder
8d278664fc900110a7ed9610b5fe7d7cc08270e5Simon Ulbricht/*!
4620e43bc9fa96506bd78ed6b3e5318b08de5996Christian Maeder * The identity model. Exposed to allow (setter) dependency injection.
c6d434b8e7bad0ebe8337df307dcad1e78b6a80fChristian Maeder */
0f904f53b2c722d108ed88cec2a1bf66f7e45317Simon Ulbricht@property (nonatomic, strong) FRAIdentityModel *identityModel;
0f904f53b2c722d108ed88cec2a1bf66f7e45317Simon Ulbricht
8d278664fc900110a7ed9610b5fe7d7cc08270e5Simon Ulbricht@end
fe717c8abf043c8677a2972ad560b3e739d7ba0dChristian Maeder