Skip to content

Commit 3b9495f

Browse files
committed
Update copyrights and licenses
1 parent 0af6963 commit 3b9495f

378 files changed

Lines changed: 1737 additions & 566 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

LDK/api-src/org/labkey/api/ldk/ExtendedSimpleModule.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013 LabKey Corporation
2+
* Copyright (c) 2015-2026 LabKey Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -26,11 +26,6 @@
2626
import org.springframework.context.ApplicationContextAware;
2727
import org.springframework.web.servlet.mvc.Controller;
2828

29-
/**
30-
* User: bimber
31-
* Date: 2/6/13
32-
* Time: 6:26 PM
33-
*/
3429
public class ExtendedSimpleModule extends SimpleModule
3530
{
3631
@Override

LDK/api-src/org/labkey/api/ldk/LDKService.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012-2014 LabKey Corporation
2+
* Copyright (c) 2015-2026 LabKey Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -28,11 +28,6 @@
2828
import java.util.List;
2929
import java.util.Map;
3030

31-
/**
32-
* User: bimber
33-
* Date: 11/4/12
34-
* Time: 3:48 PM
35-
*/
3631
abstract public class LDKService
3732
{
3833
static LDKService instance;

LDK/api-src/org/labkey/api/ldk/buttons/ShowBulkEditButton.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013-2014 LabKey Corporation
2+
* Copyright (c) 2019-2026 LabKey Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -21,11 +21,6 @@
2121
import org.labkey.api.security.permissions.AdminPermission;
2222
import org.labkey.api.security.permissions.Permission;
2323

24-
/**
25-
* User: bimber
26-
* Date: 7/14/13
27-
* Time: 4:05 PM
28-
*/
2924
public class ShowBulkEditButton extends SimpleButtonConfigFactory
3025
{
3126
protected String _schemaName;

LDK/api-src/org/labkey/api/ldk/buttons/ShowEditUIButton.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2014-2019 LabKey Corporation
2+
* Copyright (c) 2021-2026 LabKey Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -24,11 +24,6 @@
2424

2525
import java.util.Map;
2626

27-
/**
28-
* User: bimber
29-
* Date: 7/14/13
30-
* Time: 4:05 PM
31-
*/
3227
public class ShowEditUIButton extends SimpleButtonConfigFactory
3328
{
3429
protected String _schemaName;

LDK/api-src/org/labkey/api/ldk/notification/AbstractNotification.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2014 LabKey Corporation
2+
* Copyright (c) 2015-2026 LabKey Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -29,11 +29,6 @@
2929
import java.text.DateFormat;
3030
import java.text.SimpleDateFormat;
3131

32-
/**
33-
* User: bimber
34-
* Date: 1/7/14
35-
* Time: 5:30 PM
36-
*/
3732
abstract public class AbstractNotification implements Notification
3833
{
3934
private final Module _owner;

LDK/api-src/org/labkey/api/ldk/notification/Notification.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012-2013 LabKey Corporation
2+
* Copyright (c) 2015-2026 LabKey Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -23,11 +23,6 @@
2323
import org.labkey.api.security.User;
2424
import org.labkey.api.util.MailHelper;
2525

26-
/**
27-
* User: bbimber
28-
* Date: 7/14/12
29-
* Time: 2:53 PM
30-
*/
3126
public interface Notification
3227
{
3328
/**

LDK/api-src/org/labkey/api/ldk/notification/NotificationSection.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013 LabKey Corporation
2+
* Copyright (c) 2015-2026 LabKey Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -18,11 +18,6 @@
1818
import org.labkey.api.data.Container;
1919
import org.labkey.api.security.User;
2020

21-
/**
22-
* User: bimber
23-
* Date: 9/23/13
24-
* Time: 9:05 PM
25-
*/
2621
public interface NotificationSection
2722
{
2823
String getMessage(Container c, User u);

LDK/api-src/org/labkey/api/ldk/notification/NotificationService.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2012-2014 LabKey Corporation
2+
* Copyright (c) 2015-2026 LabKey Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -25,11 +25,6 @@
2525
import java.util.List;
2626
import java.util.Set;
2727

28-
/**
29-
* User: bimber
30-
* Date: 12/19/12
31-
* Time: 3:19 PM
32-
*/
3328
abstract public class NotificationService
3429
{
3530
static NotificationService _instance;

LDK/api-src/org/labkey/api/ldk/security/DataAdminPermission.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
/*
2+
* Copyright (c) 2026 LabKey Corporation
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
116
package org.labkey.api.ldk.security;
217

318
import org.labkey.api.security.permissions.AbstractPermission;

LDK/api-src/org/labkey/api/ldk/table/AbstractDataDefinedTable.java

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016-2019 LabKey Corporation
2+
* Copyright (c) 2023-2026 LabKey Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -52,11 +52,6 @@
5252
import java.util.Set;
5353
import java.util.concurrent.Callable;
5454

55-
/**
56-
* User: bimber
57-
* Date: 4/2/13
58-
* Time: 2:54 PM
59-
*/
6055
abstract public class AbstractDataDefinedTable<SchemaType extends UserSchema> extends CustomPermissionsTable<SchemaType>
6156
{
6257
protected String _pk;

0 commit comments

Comments
 (0)