This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package fluent; | |
public class ObjectWikiExample { | |
public void someMethod(ObjectWikiDatabaseConnection databaseConnection) { | |
List<Books> books = FromDatabase(dbConn).select(Book.class).with("cover", equal("red")).with("author", like("%Wendt")).fetchAll(); | |
for (Book book : books) { | |
System.out.println(book); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Consumer implements UserAPIConsumer { | |
@Override | |
public void doit(UserAPI userAPI) { | |
userAPI.withCurrentOrNextPeriod(new BillingPeriodContext() { | |
@Override | |
public void executedIfPeriodExists(BillingPeriod period) { | |
System.out.println("yes: " + period); | |
} | |
@Override | |
public void executedOtherwise() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package se.wendt.statoil.mastercard; | |
import java.util.ArrayList; | |
import java.util.concurrent.CountDownLatch; | |
import redis.clients.jedis.Jedis; | |
import redis.clients.jedis.JedisPubSub; | |
public class JedisTest { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package se.wendt.statoil.mastercard; | |
import java.util.ArrayList; | |
import java.util.Collection; | |
import java.util.concurrent.CountDownLatch; | |
import java.util.concurrent.TimeUnit; | |
import org.openqa.selenium.By; | |
import org.openqa.selenium.WebDriver; | |
import org.openqa.selenium.WebElement; |
NewerOlder