566f735e84e576e1592d0bf367182a0586944380Robert Wapshott/*
566f735e84e576e1592d0bf367182a0586944380Robert Wapshott * The contents of this file are subject to the terms of the Common Development and
566f735e84e576e1592d0bf367182a0586944380Robert Wapshott * Distribution License (the License). You may not use this file except in compliance with the
566f735e84e576e1592d0bf367182a0586944380Robert Wapshott * License.
566f735e84e576e1592d0bf367182a0586944380Robert Wapshott *
566f735e84e576e1592d0bf367182a0586944380Robert Wapshott * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
566f735e84e576e1592d0bf367182a0586944380Robert Wapshott * specific language governing permission and limitations under the License.
566f735e84e576e1592d0bf367182a0586944380Robert Wapshott *
566f735e84e576e1592d0bf367182a0586944380Robert Wapshott * When distributing Covered Software, include this CDDL Header Notice in each file and include
566f735e84e576e1592d0bf367182a0586944380Robert Wapshott * the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
566f735e84e576e1592d0bf367182a0586944380Robert Wapshott * Header, with the fields enclosed by brackets [] replaced by your own identifying
566f735e84e576e1592d0bf367182a0586944380Robert Wapshott * information: "Portions copyright [year] [name of copyright owner]".
566f735e84e576e1592d0bf367182a0586944380Robert Wapshott *
566f735e84e576e1592d0bf367182a0586944380Robert Wapshott * Copyright 2016 ForgeRock AS.
566f735e84e576e1592d0bf367182a0586944380Robert Wapshott */
566f735e84e576e1592d0bf367182a0586944380Robert Wapshott
566f735e84e576e1592d0bf367182a0586944380Robert Wapshott@class FRAIdentityModel;
566f735e84e576e1592d0bf367182a0586944380Robert Wapshott
566f735e84e576e1592d0bf367182a0586944380Robert Wapshott/*!
566f735e84e576e1592d0bf367182a0586944380Robert Wapshott * View controller responsible for displaying a splash screen to the user under specific
566f735e84e576e1592d0bf367182a0586944380Robert Wapshott * conditions.
566f735e84e576e1592d0bf367182a0586944380Robert Wapshott */
566f735e84e576e1592d0bf367182a0586944380Robert Wapshott@interface FRASplashViewController : UIViewController
566f735e84e576e1592d0bf367182a0586944380Robert Wapshott
566f735e84e576e1592d0bf367182a0586944380Robert Wapshott/*!
566f735e84e576e1592d0bf367182a0586944380Robert Wapshott * The identity model. Exposed to allow (setter) dependency injection.
566f735e84e576e1592d0bf367182a0586944380Robert Wapshott */
566f735e84e576e1592d0bf367182a0586944380Robert Wapshott@property (nonatomic, strong) FRAIdentityModel *identityModel;
566f735e84e576e1592d0bf367182a0586944380Robert Wapshott
566f735e84e576e1592d0bf367182a0586944380Robert Wapshott@end