Skip to content

Commit

Permalink
Added IT to language code so that the changes from previously merged …
Browse files Browse the repository at this point in the history
…PR can be used.

Modified signature in the classes authored by me.
  • Loading branch information
Olga Maciaszek-Sharma committed Jul 8, 2015
1 parent 9539a67 commit 59b34d5
Show file tree
Hide file tree
Showing 13 changed files with 15 additions and 14 deletions.
2 changes: 1 addition & 1 deletion src/main/java/io/codearte/jfairy/EnFairyModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import java.util.Random;

/**
* @author omaciaszek
* @author Olga Maciaszek-Sharma
* @since 08.03.15
*/
public class EnFairyModule extends FairyModule {
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/io/codearte/jfairy/PlFairyModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import java.util.Random;

/**
* @author omaciaszek
* @author Olga Maciaszek-Sharma
* @since 21.02.15
*/
public class PlFairyModule extends FairyModule {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
import static org.apache.commons.lang3.StringUtils.leftPad;

/**
* @author omaciaszek
* @author Olga Maciaszek-Sharma
* @since 21.03.15
*/
public class EmployerIdentificationNumberProvider implements VATIdentificationNumberProvider {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import com.google.inject.Provider;

/**
* @author omaciaszek
* @author Olga Maciaszek-Sharma
* @since 21.02.15
*/
public interface PassportNumberProvider extends Provider<String> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import org.apache.commons.lang3.RandomStringUtils;

/**
* @author omaciaszek
* @author Olga Maciaszek-Sharma
* @since 15.03.15
*/
public class EnPassportNumberProvider implements PassportNumberProvider {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
import static org.apache.commons.lang3.StringUtils.leftPad;

/**
* @author omaciaszek
* @author Olga Maciaszek-Sharma
* @since 15.03.15
*/
public class SocialSecurityCardNumberProvider implements NationalIdentityCardNumberProvider, VATIdentificationNumberProvider {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@


/**
* @author omaciaszek
* @author Olga Maciaszek-Sharma
* @since 21.02.15
*/
public class PlPassportNumberProvider implements PassportNumberProvider {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
package io.codearte.jfairy.producer.util;

/**
* @author omaciaszek
* @author Olga Maciaszek-Sharma
* @since 21.03.15
*/
public enum LanguageCode {
PL,
EN,
ES
ES,
IT
}
2 changes: 1 addition & 1 deletion src/test/groovy/io/codearte/jfairy/FairyModuleSpec.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package io.codearte.jfairy
import spock.lang.Specification

/**
* @author omaciaszek
* @author Olga Maciaszek-Sharma
* @since 15.03.15
*/
class FairyModuleSpec extends Specification {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import io.codearte.jfairy.Fairy
import spock.lang.Specification

/**
* @author omaciaszek
* @author Olga Maciaszek-Sharma
@since 21.03.15
*/
class EmployerIdentificationNumberProviderSpec extends Specification {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import io.codearte.jfairy.Fairy
import spock.lang.Specification

/**
* @author omaciaszek
* @author Olga Maciaszek-Sharma
@since 15.03.15
*/
class EnPassportNumberProviderSpec extends Specification {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import io.codearte.jfairy.Fairy
import spock.lang.Specification

/**
* @author omaciaszek
* @author Olga Maciaszek-Sharma
@since 15.03.15
*/
class SocialSecurityNumberProviderSpec extends Specification {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import io.codearte.jfairy.Fairy
import spock.lang.Specification

/**
* @author omaciaszek
* @author Olga Maciaszek-Sharma
@since 21.02.15
*/
class PlPassportNumberProviderSpec extends Specification {
Expand Down

0 comments on commit 59b34d5

Please sign in to comment.