Skip to content

Instantly share code, notes, and snippets.

View klauswuestefeld's full-sized avatar

Klaus Wuestefeld klauswuestefeld

View GitHub Profile
@klauswuestefeld
klauswuestefeld / gist:1103582
Created July 25, 2011 04:55
PrevaylerJr - "To serve the persistence needs of 99% of information systems in the world using 23 semicolons."
import java.io.*;
public class PrevaylerJr {
public static interface Command extends Serializable {
Object executeOn(Object system);
}