-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathSignalDataModule.java
More file actions
103 lines (88 loc) · 2.58 KB
/
Copy pathSignalDataModule.java
File metadata and controls
103 lines (88 loc) · 2.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
/*
* Copyright (c) 2016 LabKey Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.labkey.signaldata;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.labkey.api.data.Container;
import org.labkey.api.data.UpgradeCode;
import org.labkey.api.module.DefaultModule;
import org.labkey.api.module.ModuleContext;
import org.labkey.api.module.ModuleProperty;
import org.labkey.api.view.WebPartFactory;
import java.util.Collection;
import java.util.Collections;
import java.util.List;
public class SignalDataModule extends DefaultModule
{
public static final String NAME = "SignalData";
public static final String QC_PROVIDER_PROPERTY_NAME = "QCViewProviderModule";
SignalDataModule()
{
super();
ModuleProperty qcViewProperty;
qcViewProperty = new ModuleProperty(this, QC_PROVIDER_PROPERTY_NAME);
qcViewProperty.setDescription("Name of module that will provide the QC view");
qcViewProperty.setCanSetPerContainer(true);
qcViewProperty.setDefaultValue("signaldata");
addModuleProperty(qcViewProperty);
}
@Override
public String getName()
{
return NAME;
}
@Override
@NotNull
protected Collection<WebPartFactory> createWebPartFactories()
{
return Collections.emptyList();
}
@Override
protected void init()
{
addController(SignalDataController.NAME, SignalDataController.class);
}
@Override
public void doStartup(ModuleContext moduleContext)
{
}
@Override
public @Nullable Double getSchemaVersion()
{
return 26.000;
}
@Override
public boolean hasScripts()
{
return true;
}
@Override
public @NotNull Collection<String> getSchemaNames()
{
return List.of("signaldata");
}
@Override
public @Nullable UpgradeCode getUpgradeCode()
{
return new SignalDataUpgradeCode();
}
@Override
@NotNull
public Collection<String> getSummary(Container c)
{
return Collections.emptyList();
}
}