FRANotificationViewController.m revision 2229ffbfe08c2cd606c305f8934e627548002c9e
662N/A/*
662N/A * The contents of this file are subject to the terms of the Common Development and
662N/A * Distribution License (the License). You may not use this file except in compliance with the
662N/A * License.
662N/A *
662N/A * You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
662N/A * specific language governing permission and limitations under the License.
662N/A *
662N/A * When distributing Covered Software, include this CDDL Header Notice in each file and include
662N/A * the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
662N/A * Header, with the fields enclosed by brackets [] replaced by your own identifying
662N/A * information: "Portions copyright [year] [name of copyright owner]".
662N/A *
662N/A * Copyright 2016 ForgeRock AS.
662N/A */
662N/A
662N/A#import "FRANotificationViewController.h"
662N/A
662N/A@implementation FRANotificationViewController
662N/A
662N/A- (IBAction)authorize:(id)sender {
662N/A NSLog(@"Permit requested action");
662N/A [self dismissViewControllerAnimated:YES completion:nil];
662N/A}
662N/A
662N/A- (IBAction)dismiss:(id)sender {
662N/A NSLog(@"Deny requested action");
662N/A [self dismissViewControllerAnimated:YES completion:nil];
662N/A}
662N/A
662N/A@end
662N/A