Skip to content

Commit d29daa1

Browse files
Merge 24.12 to develop
2 parents b1a8562 + 8846333 commit d29daa1

File tree

11 files changed

+469
-303
lines changed

11 files changed

+469
-303
lines changed

nextflow/resources/views/begin.html

Lines changed: 0 additions & 17 deletions
This file was deleted.

nextflow/resources/views/nextFlowConfiguration.html

Lines changed: 0 additions & 88 deletions
This file was deleted.

nextflow/resources/views/nextFlowConfiguration.view.xml

Lines changed: 0 additions & 5 deletions
This file was deleted.
Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
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

Comments
 (0)