Note that there are some explanatory texts on larger screens.

plurals
  1. POGWT RPC warn Checking all subtypes
    primarykey
    data
    text
    <p>I have a gwt aplication, during compilation I get the error:</p> <blockquote> <p>Scanning for additional dependencies: file:/D:/projects/healthplanel_trunk/clinics-gwt-client/src/com/clinics/gwt/shared/UserServiceAsync.java Computing all possible rebind results for 'com.clinics.gwt.shared.UserService' Rebinding com.clinics.gwt.shared.UserService Invoking generator com.google.gwt.user.rebind.rpc.ServiceInterfaceProxyGenerator Generating client proxy for remote service interface 'com.clinics.gwt.shared.UserService' Analyzing 'com.clinics.gwt.shared.UserService' for serializable types Analyzing methods: public abstract com.clinics.gwt.shared.query.GQueryResult listAdmins(com.clinics.gwt.shared.query.GQueryParams queryParams) Parameter: com.clinics.gwt.shared.query.GQueryParams queryParams com.clinics.gwt.shared.query.GQueryParams Verifying instantiability com.clinics.gwt.shared.query.GQueryParams Analyzing the fields of type 'com.clinics.gwt.shared.query.GQueryParams' that qualify for serialization private java.util.List> filters java.util.List> Verifying instantiability java.util.Vector> Checking parameters of 'java.util.Vector>' Checking type argument 0 of type 'java.util.Vector' because it is directly exposed in this type or in one of its subtypes com.clinics.gwt.shared.query.GFilterBy Verifying instantiability com.clinics.gwt.shared.query.GFilterBy Checking parameters of 'com.clinics.gwt.shared.query.GFilterBy' Checking type argument 0 of type 'com.clinics.gwt.shared.query.GFilterBy' because it is directly exposed in this type or in one of its subtypes java.io.Serializable Verifying instantiability java.util.HashMap [WARN] Checking all subtypes of Object which qualify for serialization</p> </blockquote> <p>My code is: </p> <pre><code>public class GQueryParams implements IsSerializable { private static final long serialVersionUID = 1L; private int offset = 0; private int maxCount = -1; // -1 means all private ArrayList&lt;GOrderBy&gt; orders = new ArrayList&lt;GOrderBy&gt;(); private ArrayList&lt;NoSqlOrderBy&gt; noSqlOrders = new ArrayList&lt;NoSqlOrderBy&gt;(); private ArrayList&lt;GFilterBy&lt;?&gt;&gt; filters = new ArrayList&lt;GFilterBy&lt;?&gt;&gt;(); </code></pre> <p>And:</p> <pre><code>public class GFilterBy&lt;T extends Serializable&gt; implements Serializable { private static final long serialVersionUID = 1L; private String id; private GFilterOperation operation; private T value; </code></pre> <p>What's wrong, could you please help me with it?</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload