-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
469 additions
and
303 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
71 changes: 71 additions & 0 deletions
71
nextflow/src/org/labkey/nextflow/NextFlowConfiguration.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,71 @@ | ||
package org.labkey.nextflow; | ||
|
||
public class NextFlowConfiguration | ||
{ | ||
private String nextFlowConfigFilePath; | ||
private String accountName; | ||
private String identity; | ||
private String s3BucketPath; | ||
private String credential; | ||
private String apiKey; | ||
|
||
public String getNextFlowConfigFilePath() | ||
{ | ||
return nextFlowConfigFilePath; | ||
} | ||
|
||
public void setNextFlowConfigFilePath(String nextFlowConfigFilePath) | ||
{ | ||
this.nextFlowConfigFilePath = nextFlowConfigFilePath; | ||
} | ||
|
||
public String getAccountName() | ||
{ | ||
return accountName; | ||
} | ||
|
||
public void setAccountName(String accountName) | ||
{ | ||
this.accountName = accountName; | ||
} | ||
|
||
public String getIdentity() | ||
{ | ||
return identity; | ||
} | ||
|
||
public void setIdentity(String identity) | ||
{ | ||
this.identity = identity; | ||
} | ||
|
||
public String getS3BucketPath() | ||
{ | ||
return s3BucketPath; | ||
} | ||
|
||
public void setS3BucketPath(String s3BucketPath) | ||
{ | ||
this.s3BucketPath = s3BucketPath; | ||
} | ||
|
||
public String getCredential() | ||
{ | ||
return credential; | ||
} | ||
|
||
public void setCredential(String credential) | ||
{ | ||
this.credential = credential; | ||
} | ||
|
||
public String getApiKey() | ||
{ | ||
return apiKey; | ||
} | ||
|
||
public void setApiKey(String apiKey) | ||
{ | ||
this.apiKey = apiKey; | ||
} | ||
} |
Oops, something went wrong.