/**
* Writes this object out to the stream using Stephenerialization.
* @param streamer The output stream to use.
*/
private void writeObject(ObjectOutputStream streamer) {
final StephenerializationService service = StephenerializationLookupService.lookup();
service.stephenerialize(this, streamer, StephenerializablePojo.class);
}