All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.web.bindery.requestfactory.shared.ProxySerializer Maven / Gradle / Ivy

There is a newer version: 2.10.0_1
Show newest version
/*
 * Copyright 2010 Google Inc.
 * 
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 * 
 * http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */
package com.google.web.bindery.requestfactory.shared;

/**
 * Serializes graphs of EntityProxy objects. A ProxySerializer is associated
 * with an instance of a {@link ProxyStore} when it is created via
 * {@link RequestFactory#getSerializer(ProxyStore)}.
 * 

* The {@link EntityProxy#stableId()} of non-persisted (i.e. newly * {@link RequestContext#create(Class) created}) {@link EntityProxy} instances * are not stable. *

* To create a self-contained message that encapsulates a proxy: * *

 * RequestFactory myFactory = ...;
 * MyFooProxy someProxy = ...;
 * 
 * DefaultProxyStore store = new DefaultProxyStore();
 * ProxySerializer ser = myFactory.getSerializer(store);
 * // More than one proxy could be serialized
 * String key = ser.serialize(someProxy);
 * // Create the flattened representation
 * String payload = store.encode();
 * 
* * To recreate the object: * *
 * ProxyStore store = new DefaultProxyStore(payload);
 * ProxySerializer ser = myFactory.getSerializer(store);
 * MyFooProxy someProxy = ser.deserialize(MyFooProxy.class, key);
 * 
* * If two objects refer to different EntityProxy instances that have the same * stableId(), the last mutable proxy encountered will be preferred, otherwise * the first immutable proxy will be used. * * @see DefaultProxyStore */ public interface ProxySerializer { /** * Recreate a proxy instance that was previously passed to * {@link #serialize(BaseProxy)}. * * @param the type of proxy object to create * @param proxyType the type of proxy object to create * @param key a value previously returned from {@link #serialize(BaseProxy)} * @return a new, immutable instance of the proxy or {@code null} if the data * needed to deserialize the proxy is not present in the ProxyStore */ T deserialize(Class proxyType, String key); /** * Recreate a {@link EntityProxy} instance that was previously passed to * {@link #serialize(BaseProxy)}. * * @param the type of proxy object to create * @param id the {@link EntityProxyId} of the desired entity * @return a new, immutable instance of the proxy or {@code null} if the data * needed to deserialize the proxy is not present in the ProxyStore */ T deserialize(EntityProxyId id); /** * Store a proxy into the backing store. * * @param proxy the proxy to store * @return a key value that can be passed to * {@link #deserialize(Class, String)} */ String serialize(BaseProxy proxy); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy