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 es.moki; | |
import com.google.common.collect.Lists; | |
import org.apache.log4j.Appender; | |
import org.apache.log4j.Level; | |
import org.apache.log4j.Logger; | |
import org.apache.log4j.spi.LoggingEvent; | |
import org.mockito.ArgumentCaptor; | |
import java.util.List; |
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
### Keybase proof | |
I hereby claim: | |
* I am mokies on github. | |
* I am mokies (https://keybase.io/mokies) on keybase. | |
* I have a public key whose fingerprint is E47E 8CBA 37BC 2947 6771 C23F 39BB 375E 333D C78B | |
To claim this, I am signing this object: |
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 au.com.coles.boston.app.service.impl; | |
import com.google.common.collect.Lists; | |
import org.apache.log4j.Appender; | |
import org.apache.log4j.Level; | |
import org.apache.log4j.Logger; | |
import org.apache.log4j.spi.LoggingEvent; | |
import org.mockito.ArgumentCaptor; | |
import java.util.List; |
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
#!/usr/bin/env ruby | |
class Identify | |
def insertIdentifiers (fileName) | |
out_filename = fileName.gsub(".rtf", "-transformed.rtf") | |
puts out_filename | |
out_file = File.new(out_filename, "w") | |
count = 0 |
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 es.moki.app.repository.domain; | |
import javax.persistence.Id; | |
import javax.persistence.MappedSuperclass; | |
import java.io.Serializable; | |
@MappedSuperclass | |
public abstract class BaseEntity<ID extends Serializable> implements IdentifiableEntity<ID> { | |
@Id |