forked from oncokb/oncokb-public
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Revert "Feature/company license (oncokb#1164)" (oncokb#1175)"
This reverts commit b54197a.
- Loading branch information
Showing
34 changed files
with
1,609 additions
and
78 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
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
Binary file modified
BIN
+23.8 KB
(110%)
screenshot-test/__baseline_snapshots__/Company Details Page-snap.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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
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
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
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
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
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
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
61 changes: 61 additions & 0 deletions
61
src/main/java/org/mskcc/cbio/oncokb/service/dto/TerminationEmailDTO.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 |
---|---|---|
@@ -0,0 +1,61 @@ | ||
package org.mskcc.cbio.oncokb.service.dto; | ||
|
||
import java.io.Serializable; | ||
|
||
public class TerminationEmailDTO implements Serializable { | ||
private String subject; | ||
private String from; | ||
private String bcc; | ||
private String cc; | ||
private String content; | ||
private Long companyId; | ||
|
||
public String getSubject() { | ||
return subject; | ||
} | ||
|
||
public void setSubject(String subject) { | ||
this.subject = subject; | ||
} | ||
|
||
|
||
public String getFrom() { | ||
return from; | ||
} | ||
|
||
public void setFrom(String from) { | ||
this.from = from; | ||
} | ||
|
||
public String getBcc() { | ||
return bcc; | ||
} | ||
|
||
public void setBcc(String bcc) { | ||
this.bcc = bcc; | ||
} | ||
|
||
public String getCc() { | ||
return cc; | ||
} | ||
|
||
public void setCc(String cc) { | ||
this.cc = cc; | ||
} | ||
|
||
public String getContent() { | ||
return content; | ||
} | ||
|
||
public void setContent(String content) { | ||
this.content = content; | ||
} | ||
|
||
public Long getCompanyId() { | ||
return companyId; | ||
} | ||
|
||
public void setCompanyId(Long companyId) { | ||
this.companyId = companyId; | ||
} | ||
} |
15 changes: 15 additions & 0 deletions
15
...ava/org/mskcc/cbio/oncokb/service/dto/companyadditionalinfo/CompanyAdditionalInfoDTO.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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package org.mskcc.cbio.oncokb.service.dto.companyadditionalinfo; | ||
|
||
import java.io.Serializable; | ||
|
||
public class CompanyAdditionalInfoDTO implements Serializable { | ||
private CompanyLicense license; | ||
|
||
public CompanyLicense getLicense() { | ||
return license; | ||
} | ||
|
||
public void setLicense(CompanyLicense license) { | ||
this.license = license; | ||
} | ||
} |
34 changes: 34 additions & 0 deletions
34
src/main/java/org/mskcc/cbio/oncokb/service/dto/companyadditionalinfo/CompanyLicense.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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
package org.mskcc.cbio.oncokb.service.dto.companyadditionalinfo; | ||
|
||
import java.io.Serializable; | ||
import java.time.Instant; | ||
|
||
public class CompanyLicense implements Serializable { | ||
private Instant activation; | ||
private boolean autoRenewal; | ||
private CompanyTermination termination; | ||
|
||
public Instant getActivation() { | ||
return activation; | ||
} | ||
|
||
public void setActivation(Instant activation) { | ||
this.activation = activation; | ||
} | ||
|
||
public boolean isAutoRenewal() { | ||
return autoRenewal; | ||
} | ||
|
||
public void setAutoRenewal(boolean autoRenewal) { | ||
this.autoRenewal = autoRenewal; | ||
} | ||
|
||
public CompanyTermination getTermination() { | ||
return termination; | ||
} | ||
|
||
public void setTermination(CompanyTermination termination) { | ||
this.termination = termination; | ||
} | ||
} |
Oops, something went wrong.