I am getting the ..gwt.client.rpc.SerializationException: Type
'org.impressions.client.view.component.Header$Model' was not included
in the set of types which can be serialized by this
SerializationPolicy..
I am trying to serizlialize a simple inner/nested class which works on
server side but returning the object to the client is giving me this
error. The annotation is for objectify on the back end.
Does GWT support serizialization of a static netsted class?? I have
looked for quite a while but have not found the answer.
public class Header extends ComponentWidget {
public static class Model implements Serializable {
@Id
private Long Id;
public String title;
public String subtitle;
public String getTitle() {
return title;
}
public String getSubtitle() {
return subtitle;
}
public void setSubtitle(String subtitle) {
this.subtitle = subtitle;
}
public void setTitle(String title) {
this.title = title;
}
}
..........................
Thank you for taking the time to read this,
Chris
--
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.