I have been staring at the rpc.log file which contains something like
this:
---
bla.AdministratorDto
   Serialization status
      Not serializable
   Path
      'bla.AdministratorDto' is reachable as a subtype of type 'class
bla.MemberDto'
      'bla.MemberDto' is reachable from field 'member' of type
'bla.InternetAccountDto'
      'bla.InternetAccountDto' is reachable as a subtype of type
'class bla.InternetAccountDto'
      'bla.InternetAccountDto' is reachable from field
'internetAccount' of type 'bla.MemberDto'
      'bla.MemberDto' is reachable as a subtype of type 'class
bla.MemberDto'
      Started from 'bla.MemberDto'
---

But it doesn't tell me why it's not included in the policy file. What
am I missing ?
I mean: MemberDto is nicely included and the sub class
AdministratorDto isn't :(....
And the class looks like this:
---
public class AdministratorDto extends MemberDto {

        private AdminAccessDto access;

        public AdminAccessDto getAccess() {
                return this.access;
        }

        public void setAccess(final AdminAccessDto access) {
                this.access = access;
        }
---

The rpc.log is nice to see why something is included by following the
path... But it doesn't tell me why something is "not" included.. at
least.. I don't understand it...



-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to