List of usage examples for com.google.gwt.user.server.rpc SerializationPolicy subclass-usage
From source file com.apress.progwt.server.gwt.OneFourTenSerializationPolicy.java
public class OneFourTenSerializationPolicy extends SerializationPolicy { /** * Many JRE types would appear to be {@link Serializable} on the * server. However, clients would not see these types as being * {@link Serializable} due to mismatches between the GWT JRE
From source file com.foo.server.rpc230.OneFourTenSerializationPolicy.java
class OneFourTenSerializationPolicy extends SerializationPolicy { /** * Many JRE types would appear to be {@link Serializable} on the server. * However, clients would not see these types as being {@link Serializable} * due to mismatches between the GWT JRE emulation and the real JRE. As a
From source file com.fullmetalgalaxy.server.FmgSerializationPolicy.java
/** * @author Vincent * */ public class FmgSerializationPolicy extends SerializationPolicy { private final static FmgSerializationPolicy s_policy = new FmgSerializationPolicy();
From source file de.novanic.eventservice.service.connection.strategy.connector.streaming.EventSerializationPolicy.java
/**
* The {@link de.novanic.eventservice.service.connection.strategy.connector.streaming.EventSerializationPolicy} is required
* to serialize events (could implement IsSerializable or Serializable).
*
* @author sstrohschein
* <br>Date: 16.03.2010
From source file fr.putnami.pwt.core.service.server.service.CommandSerializationPolicy.java
public final class CommandSerializationPolicy extends SerializationPolicy implements TypeNameObfuscator { private static final String ELISION_ERROR = "Type name elision in RPC payloads is only supported if the RPC whitelist file is used."; private static final Set<Class<? extends Serializable>> JRE_BLACKLIST = Sets.newHashSet( java.lang.ArrayStoreException.class, java.lang.AssertionError.class, java.lang.Boolean.class,
From source file org.opencms.gwt.CmsDummySerializationPolicy.java
/** * A serialization policy which allows serialization and deserialization of all classes.<p> * * @since 8.0.0 */ public class CmsDummySerializationPolicy extends SerializationPolicy {
From source file org.opencms.gwt.CmsPrefetchSerializationPolicy.java
/** * A GWT serialization policy for pre-fetching.<p> * * @since 8.0.0 */ public final class CmsPrefetchSerializationPolicy extends SerializationPolicy {
From source file org.pentaho.platform.web.servlet.PentahoSerializationPolicy.java
public class PentahoSerializationPolicy extends SerializationPolicy { private List<String> whiteList = new ArrayList<String>(); @Override public boolean shouldDeserializeFields(Class<?> clazz) { return whiteList.contains(clazz.getName());
From source file org.restlet.ext.gwt.SimpleSerializationPolicy.java
/**
* Serialization policy that allows the serialization of all the classes and
* fields.
*
* @author Jerome Louvel
*/
From source file org.slim3.gwt.server.rpc.HotSerializationPolicy.java
/**
* The serialization policy for HOT reloading.
*
* @author higa
* @since 1.0.0
*