Uses of Class
org.strutsme.common.serialization.SerializationException

Packages that use SerializationException
org.strutsme.client This package contains the RemoteExecutor which allows to call an action at the server with the executeAtServer() method. 
org.strutsme.common.serialization Implementation of the serialization. 
org.strutsme.server This package contains the server classes. 
org.strutsme.wishlist.common.dto DTOs for the data exchange between server and client. 
 

Uses of SerializationException in org.strutsme.client
 

Methods in org.strutsme.client that throw SerializationException
static SafeHashtable RemoteExecutor.executeAtServer(java.lang.String actionName, java.util.Hashtable actionParameter, java.lang.String session, SafeHashtable parameters)
          Calls an action at the server and returns the result (values of the formbean).
static SafeHashtable RemoteExecutor.executeAtServer(java.lang.String actionName, SafeHashtable parameters)
          Wrapper around RemoteExecutor.executeAtServer(String, Hashtable, String, SafeHashtable).
 

Uses of SerializationException in org.strutsme.common.serialization
 

Methods in org.strutsme.common.serialization that throw SerializationException
abstract  void SerializationBase.copyValuesToBean(SafeHashtable map)
          Update all properties of this bean from the given map.
abstract  void SerializationBase.copyValuesToMap(SafeHashtable map)
          Copy all properties from this bean into the given map.
static java.lang.Object Serializer.deserialize(java.lang.String s)
          Creates the object graph from the given string.
static java.lang.String Serializer.serialize(java.lang.Object o)
          Transforms the object graph into a string.
 

Uses of SerializationException in org.strutsme.server
 

Methods in org.strutsme.server that throw SerializationException
 java.lang.Object SerializerMapper.map(java.lang.Object o)
          Recursive method to map the given object graph to an object graph which contains only objects which are supported by the Serializer.
 

Uses of SerializationException in org.strutsme.wishlist.common.dto
 

Methods in org.strutsme.wishlist.common.dto that throw SerializationException
 void BaseDtoImpl.copyValuesToBean(SafeHashtable map)
          Update all properties of this bean from the given map. mwolff: checklipse warning is ok here.
 void UserDtoImpl.copyValuesToBean(SafeHashtable map)
          Update all properties of this bean from the given map. mwolff: checklipse warning is ok here.
 void WishDtoImpl.copyValuesToBean(SafeHashtable map)
          Update all properties of this bean from the given map. mwolff: checklipse warning is ok here.
 void BaseDtoImpl.copyValuesToMap(SafeHashtable map)
          Copy all properties from this bean into the given map. mwolff: checklipse warning is ok here.
 void UserDtoImpl.copyValuesToMap(SafeHashtable map)
          Copy all properties from this bean into the given map. Also it has to set the version under the Constants.VERSION key. mwolff: checklipse warning is ok here.
 void WishDtoImpl.copyValuesToMap(SafeHashtable map)
          Copy all properties from this bean into the given map. Also it has to set the version under the Constants.VERSION key. mwolff: checklipse warning is ok here.