-
Notifications
You must be signed in to change notification settings - Fork 181
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[INJIMOB-1599] - Add lombok and remove json dependency
Signed-off-by: Swati Goel <meet2swati@gmail.com>
- Loading branch information
Showing
2 changed files
with
7 additions
and
29 deletions.
There are no files selected for viewing
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
27 changes: 3 additions & 24 deletions
27
kernel/kernel-config-server/src/main/java/io/mosip/kernel/config/server/GitUri.java
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,9 @@ | ||
package io.mosip.kernel.config.server; | ||
|
||
import lombok.Data; | ||
|
||
@Data | ||
public class GitUri { | ||
public String uri; | ||
public String branch; | ||
|
||
public GitUri() { | ||
} | ||
|
||
public GitUri(String uri, String branch) { | ||
this.uri = uri; | ||
this.branch = branch; | ||
} | ||
|
||
public String getUri() { | ||
return uri; | ||
} | ||
|
||
public void setUri(String uri) { | ||
this.uri = uri; | ||
} | ||
|
||
public String getBranch() { | ||
return branch; | ||
} | ||
|
||
public void setBranch(String branch) { | ||
this.branch = branch; | ||
} | ||
} |