Originally published at
The JFX. You can comment here or
there.
Could God create a firewall that even he himself couldn’t break?
...
public class Firewall extends God{
public boolean allowConnection(Connection c){
if(this.connectionIsMalicious(c)) //extended from God
return false;
return true;
}
}
public class Virus extends God{
public void spread(String host){
Connection c = this.createConnectionThatAppearsNotMalicious(host); //extended from God
attack(c);
}
}
...