NPE with Security Module

2017-03-22 Thread Branham, Jeremy [IT]
Hello - I am getting this exception when trying to add security module add-on... Caused by: java.lang.NullPointerException at org.isisaddons.module.security.shiro.IsisModuleSecurityRealm$1.lookupUser(IsisModuleSecurityRealm.java:149) It

Re: Derived property rendered in a 1:1 association

2017-03-22 Thread Kevin Meyer
Thanks Jeroen, That's what I was going to suggest. On 22 March 2017 17:44:27 CET, Jeroen van der Wal wrote: >Maybe change the title? > >public class Child { >public String title() { >return getProp1()+getProp2(); >} > >} > >On 22 March 2017 at

Re: How can i specify the property that is displyed in a 1:1 association

2017-03-22 Thread Martin Hesse
That doesn't work AFAIK. Use the delegate pattern in the holding entity to render the properties directly and then layout it to make it look like a separate entity with the layout xml. On Wed, Mar 22, 2017 at 9:46 PM, L Eder wrote: > Hi members: > > Child class > > > In a

Re: Deep copy object graph

2017-03-22 Thread Jeroen van der Wal
I strongly believe that when your data has a temporal nature you should model this in your domain layer. Just my two cents. Cheers, Jeroen On 19 March 2017 at 19:37, Kevin Meyer wrote: > This got caught in my spam folder... > > I fully understand your desire for deep clone in

How can i specify the property that is displyed in a 1:1 association

2017-03-22 Thread L Eder
Hi members: Child class In a parent-child object association, how could i have a derived property in the child class being rendered