Skip to content

Commit

Permalink
Fixing the changing business identifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
CharanSahaj committed Mar 15, 2019
1 parent e5f3afe commit 444a53a
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ public class IndividualOperator extends Person {
private String status = "DEFAULT";

@Column(name = "BUSINESS_IDENTIFIER")
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
private final String businessIdentifier;

private IndividualOperator() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ public class Manufacturer extends Organisation {
private MultipartFile trustedCertificateDoc;

@Column(name = "BUSINESS_IDENTIFIER")
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
private String businessIdentifier;

private Manufacturer() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ public class OrganizationOperator extends Organisation {


@Column(name = "BUSINESS_IDENTIFIER")
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
private final String businessIdentifier;

private OrganizationOperator() {
Expand Down
1 change: 0 additions & 1 deletion src/main/java/com/ispirit/digitalsky/domain/Pilot.java
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ public class Pilot extends Person {
private MultipartFile trainingCertificate;

@Column(name = "BUSINESS_IDENTIFIER")
@JsonProperty(access = JsonProperty.Access.READ_ONLY)
private final String businessIdentifier;

private Pilot() {
Expand Down

0 comments on commit 444a53a

Please sign in to comment.