Package org.pentaho.platform.web.gwt.rpc
Interface IGwtRpcSerializationPolicyCache
- All Known Implementing Classes:
GwtRpcSerializationPolicyCache
public interface IGwtRpcSerializationPolicyCache
The
IGwtRpcSerializationPolicyCache
interface represents a cached serialization policy provider.- See Also:
-
SerializationPolicyProvider
-
Method Summary
Modifier and TypeMethodDescriptioncom.google.gwt.user.server.rpc.SerializationPolicy
getSerializationPolicy
(String moduleBaseURL, String strongName, com.google.gwt.user.server.rpc.SerializationPolicyProvider sourceProvider) Get aSerializationPolicy
from cache or from the given provider.
-
Method Details
-
getSerializationPolicy
@NonNull com.google.gwt.user.server.rpc.SerializationPolicy getSerializationPolicy(@Nullable String moduleBaseURL, @Nullable String strongName, @NonNull com.google.gwt.user.server.rpc.SerializationPolicyProvider sourceProvider) Get aSerializationPolicy
from cache or from the given provider.- Parameters:
moduleBaseURL
- The base URL of the GWT module.strongName
- The strong name of the GWT module.sourceProvider
- The provider to use to obtain a missing policy. Cannot returnnull
.- Returns:
- A serialization policy.
-