|
| 1 | +package org.labkey.nextflow; |
| 2 | + |
| 3 | +public class NextFlowConfiguration |
| 4 | +{ |
| 5 | + private String nextFlowConfigFilePath; |
| 6 | + private String accountName; |
| 7 | + private String identity; |
| 8 | + private String s3BucketPath; |
| 9 | + private String credential; |
| 10 | + private String apiKey; |
| 11 | + |
| 12 | + public String getNextFlowConfigFilePath() |
| 13 | + { |
| 14 | + return nextFlowConfigFilePath; |
| 15 | + } |
| 16 | + |
| 17 | + public void setNextFlowConfigFilePath(String nextFlowConfigFilePath) |
| 18 | + { |
| 19 | + this.nextFlowConfigFilePath = nextFlowConfigFilePath; |
| 20 | + } |
| 21 | + |
| 22 | + public String getAccountName() |
| 23 | + { |
| 24 | + return accountName; |
| 25 | + } |
| 26 | + |
| 27 | + public void setAccountName(String accountName) |
| 28 | + { |
| 29 | + this.accountName = accountName; |
| 30 | + } |
| 31 | + |
| 32 | + public String getIdentity() |
| 33 | + { |
| 34 | + return identity; |
| 35 | + } |
| 36 | + |
| 37 | + public void setIdentity(String identity) |
| 38 | + { |
| 39 | + this.identity = identity; |
| 40 | + } |
| 41 | + |
| 42 | + public String getS3BucketPath() |
| 43 | + { |
| 44 | + return s3BucketPath; |
| 45 | + } |
| 46 | + |
| 47 | + public void setS3BucketPath(String s3BucketPath) |
| 48 | + { |
| 49 | + this.s3BucketPath = s3BucketPath; |
| 50 | + } |
| 51 | + |
| 52 | + public String getCredential() |
| 53 | + { |
| 54 | + return credential; |
| 55 | + } |
| 56 | + |
| 57 | + public void setCredential(String credential) |
| 58 | + { |
| 59 | + this.credential = credential; |
| 60 | + } |
| 61 | + |
| 62 | + public String getApiKey() |
| 63 | + { |
| 64 | + return apiKey; |
| 65 | + } |
| 66 | + |
| 67 | + public void setApiKey(String apiKey) |
| 68 | + { |
| 69 | + this.apiKey = apiKey; |
| 70 | + } |
| 71 | +} |
0 commit comments