This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14:12:57,911 ERROR [org.jboss.weld.Bean] (http--0.0.0.0-8080-1) WELD-000019 Error destroying an instance Managed Bean [class org.aerogear.connectivity.jpa.dao.PushApplicationDaoImpl] with qualifiers [@Any @Default] of org.aerogear.connectivity.jpa.dao.PushApplicationDaoImpl@2c9d9b0c | |
14:12:57,912 ERROR [org.jboss.weld.Bean] (http--0.0.0.0-8080-1) WELD-000019 Error destroying an instance Managed Bean [class org.aerogear.connectivity.jpa.dao.SimplePushApplicationDaoImpl] with qualifiers [@Any @Default] of org.aerogear.connectivity.jpa.dao.SimplePushApplicationDaoImpl@6250cd56 | |
14:12:57,914 ERROR [org.jboss.ejb3.invocation] (http--0.0.0.0-8080-1) JBAS014134: EJB Invocation failed on component SenderEndpoint for method public javax.ws.rs.core.Response org.aerogear.connectivity.rest.SenderEndpoint.notifyGivenChannels(java.util.Map,java.lang.String): javax.ejb.EJBException: java.lang.NullPointerException | |
at org.jboss.as.ejb3.tx.CMTTxInterceptor.handleExceptionInOurTx(CMTTxInterceptor.java:166) [jboss-as-ejb3-7.1.1.F |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if ([self.task objectForKey:@"project"] != nil) { | |
//dateCell.textLabel.text = [self.task objectForKey:@"project"]; | |
dateCell.textLabel.text = [NSString stringWithFormat:@"Poject %@", [self.task objectForKey:@"project"]]; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- (ARCellData *)cellProject { | |
[self.tableView registerClass:[UITableViewCell class] forCellReuseIdentifier:NSStringFromClass([UITableViewCell class])]; | |
ARCellData *cellData = [[ARCellData alloc] initWithIdentifier:NSStringFromClass([UITableViewCell class])]; | |
[cellData setCellConfigurationBlock:^(UITableViewCell *cell) { | |
//[cell setStyle:UITableViewCellStyleValue1]; | |
cell.textLabel.text = @"Project"; | |
cell.detailTextLabel.text = self.task[@"project"]; | |
}]; | |
return cellData; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// AGViewController.m | |
// AeroGearExample | |
// | |
// Created by Corinne Krych on 5/13/13. | |
// Copyright (c) 2013 red hat. All rights reserved. | |
// | |
#import "AGViewController.h" | |
#import <AeroGear/AeroGear.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
grails.servlet.version = "2.5" // Change depending on target container compliance (2.5 or 3.0) | |
grails.project.class.dir = "target/classes" | |
grails.project.test.class.dir = "target/test-classes" | |
grails.project.test.reports.dir = "target/test-reports" | |
grails.project.target.level = 1.6 | |
grails.project.source.level = 1.6 | |
//grails.project.war.file = "target/${appName}-${appVersion}.war" | |
// uncomment (and adjust settings) to fork the JVM to isolate classpaths | |
//grails.project.fork = [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
grails.servlet.version = "2.5" // Change depending on target container compliance (2.5 or 3.0) | |
grails.project.class.dir = "target/classes" | |
grails.project.test.class.dir = "target/test-classes" | |
grails.project.test.reports.dir = "target/test-reports" | |
grails.project.target.level = 1.6 | |
grails.project.source.level = 1.6 | |
//grails.project.war.file = "target/${appName}-${appVersion}.war" | |
// uncomment (and adjust settings) to fork the JVM to isolate classpaths | |
//grails.project.fork = [ |
NewerOlder