Skip to content

Commit

Permalink
Getters on MaskingPattern
Browse files Browse the repository at this point in the history
  • Loading branch information
sumanthreddybandi committed Mar 19, 2024
1 parent a7c00d8 commit c82b0a4
Show file tree
Hide file tree
Showing 11 changed files with 32 additions and 11 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,14 +233,14 @@ Alternatively you can pull it from the central Maven repositories:
<dependency>
<groupId>com.ebay.ejmask</groupId>
<artifactId>ejmask-bom</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>
</dependency>
```

### Using in your Gradle Project.

```groovy
compile group: 'com.ebay.ejmask', name: 'ejmask-bom', version: '1.0.2'
compile group: 'com.ebay.ejmask', name: 'ejmask-bom', version: '1.0.3'
```

## Roadmap
Expand Down
2 changes: 1 addition & 1 deletion ejmask-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.ebay.ejmask</groupId>
<artifactId>ejmask-parent</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>
</parent>

<artifactId>ejmask-api</artifactId>
Expand Down
21 changes: 21 additions & 0 deletions ejmask-api/src/main/java/com/ebay/ejmask/api/MaskingPattern.java
Original file line number Diff line number Diff line change
Expand Up @@ -109,4 +109,25 @@ public int hashCode() {
public String toString() {
return "order=" + this.order + ";pattern=" + this.pattern.pattern() + ";replacement=" + this.replacement;
}

/**
* Get the value of order
*
* @return the value of order
*/
public int getOrder() { return order; }

/**
* Get the value of pattern
*
* @return the value of pattern
*/
public Pattern getPattern() { return pattern; }

/**
* Get the value of replacement
*
* @return the value of replacement
*/
public String getReplacement() { return replacement; }
}
2 changes: 1 addition & 1 deletion ejmask-bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.ebay.ejmask</groupId>
<artifactId>ejmask-parent</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion ejmask-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.ebay.ejmask</groupId>
<artifactId>ejmask-parent</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>
</parent>

<artifactId>ejmask-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion ejmask-extensions/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.ebay.ejmask</groupId>
<artifactId>ejmask-parent</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>
</parent>

<artifactId>ejmask-extensions</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion ejmask-spring/ejmask-spring-autoconfig/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.ebay.ejmask</groupId>
<artifactId>ejmask-spring</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>
</parent>

<artifactId>ejmask-spring-autoconfig</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion ejmask-spring/ejmask-spring-boot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.ebay.ejmask</groupId>
<artifactId>ejmask-spring</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>
</parent>

<artifactId>ejmask-spring-boot</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion ejmask-spring/ejmask-spring-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.ebay.ejmask</groupId>
<artifactId>ejmask-spring</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>
</parent>

<artifactId>ejmask-spring-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion ejmask-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<parent>
<groupId>com.ebay.ejmask</groupId>
<artifactId>ejmask-parent</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>
</parent>

<artifactId>ejmask-spring</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

<groupId>com.ebay.ejmask</groupId>
<artifactId>ejmask-parent</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>

<packaging>pom</packaging>

Expand Down

0 comments on commit c82b0a4

Please sign in to comment.