diff --git a/.storybook/main.js b/.storybook/main.js index 158b8ded7..0e1d27899 100644 --- a/.storybook/main.js +++ b/.storybook/main.js @@ -1,3 +1,8 @@ +/* + * Copyright (c) 2021-2026 Board of Regents of the University of Wisconsin System + * + * Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0 + */ module.exports = { stories: ['../WNPRC_EHR/src/**/*.stories.tsx'], }; diff --git a/.storybook/webpack.config.js b/.storybook/webpack.config.js index 592c9afa1..d88179e61 100644 --- a/.storybook/webpack.config.js +++ b/.storybook/webpack.config.js @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 LabKey Corporation + * Copyright (c) 2021-2026 Board of Regents of the University of Wisconsin System * * Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0 */ diff --git a/ATTRIBUTION b/ATTRIBUTION new file mode 100644 index 000000000..4cca15ab7 --- /dev/null +++ b/ATTRIBUTION @@ -0,0 +1,2 @@ +Source code developed in collaboration with the Wisconsin National +Primate Center at the University of Wisconsin-Madison. diff --git a/AnimalRequests/jest-config.js b/AnimalRequests/jest-config.js index f01cf2f62..5f3221411 100644 --- a/AnimalRequests/jest-config.js +++ b/AnimalRequests/jest-config.js @@ -1,3 +1,8 @@ +/* + * Copyright (c) 2020-2026 Board of Regents of the University of Wisconsin System + * + * Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0 + */ module.exports = { "roots": [ "/src" diff --git a/AnimalRequests/src/__tests__/main.test.tsx b/AnimalRequests/src/__tests__/main.test.tsx index d407cc4ab..3a7f45e01 100644 --- a/AnimalRequests/src/__tests__/main.test.tsx +++ b/AnimalRequests/src/__tests__/main.test.tsx @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2020-2026 Board of Regents of the University of Wisconsin System + * + * 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. + */ import { overrideAFieldValue } from '../client/query/helpers' diff --git a/AnimalRequests/src/client/app.tsx b/AnimalRequests/src/client/app.tsx index 02d08d650..a1100fd45 100644 --- a/AnimalRequests/src/client/app.tsx +++ b/AnimalRequests/src/client/app.tsx @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2020-2026 Board of Regents of the University of Wisconsin System + * + * 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. + */ import * as React from 'react'; import { createRoot } from 'react-dom/client'; import './theme/css/index.css'; diff --git a/AnimalRequests/src/client/containers/Forms/AnimalRequestForm.tsx b/AnimalRequests/src/client/containers/Forms/AnimalRequestForm.tsx index b18a73c7b..9e1a60ca3 100644 --- a/AnimalRequests/src/client/containers/Forms/AnimalRequestForm.tsx +++ b/AnimalRequests/src/client/containers/Forms/AnimalRequestForm.tsx @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2020-2026 Board of Regents of the University of Wisconsin System + * + * 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. + */ import React, { FC, useEffect, useState } from 'react'; import DatePicker from 'react-datepicker'; diff --git a/AnimalRequests/src/client/query/actions.ts b/AnimalRequests/src/client/query/actions.ts index dda6d005e..5f6752389 100644 --- a/AnimalRequests/src/client/query/actions.ts +++ b/AnimalRequests/src/client/query/actions.ts @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2020-2026 Board of Regents of the University of Wisconsin System + * + * 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. + */ //Expects json row data with commands property, see API docs for saveRows export const saveRowsDirect = (jsonData) => { return new Promise((resolve, reject) => { diff --git a/AnimalRequests/src/client/query/helpers.ts b/AnimalRequests/src/client/query/helpers.ts index fb5b32003..8ca5c4a93 100644 --- a/AnimalRequests/src/client/query/helpers.ts +++ b/AnimalRequests/src/client/query/helpers.ts @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2020-2026 Board of Regents of the University of Wisconsin System + * + * 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. + */ import {saveRowsDirect} from "./actions"; import moment from 'moment'; diff --git a/AnimalRequests/src/client/theme/style.js b/AnimalRequests/src/client/theme/style.js index bfe50120a..8625ea6cd 100644 --- a/AnimalRequests/src/client/theme/style.js +++ b/AnimalRequests/src/client/theme/style.js @@ -1,3 +1,8 @@ +/* + * Copyright (c) 2020-2026 Board of Regents of the University of Wisconsin System + * + * Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0 + */ import './css/index.css'; import './css/react-datepicker.css' import './css/bootstrap.min.css' diff --git a/AnimalRequests/src/client/typings/globals.d.ts b/AnimalRequests/src/client/typings/globals.d.ts index 47b5eb55b..5dbe6b7ae 100644 --- a/AnimalRequests/src/client/typings/globals.d.ts +++ b/AnimalRequests/src/client/typings/globals.d.ts @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2020-2026 Board of Regents of the University of Wisconsin System + * + * 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. + */ declare global { diff --git a/AnimalRequests/src/client/typings/main.d.ts b/AnimalRequests/src/client/typings/main.d.ts index 10044865b..a7f5bacda 100644 --- a/AnimalRequests/src/client/typings/main.d.ts +++ b/AnimalRequests/src/client/typings/main.d.ts @@ -1,2 +1,17 @@ +/* + * Copyright (c) 2020-2026 Board of Regents of the University of Wisconsin System + * + * 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. + */ /* App globals */ /// \ No newline at end of file diff --git a/AnimalRequests/src/org/labkey/animalrequests/AnimalRequestsContainerListener.java b/AnimalRequests/src/org/labkey/animalrequests/AnimalRequestsContainerListener.java index da734f19b..f3ee320b4 100644 --- a/AnimalRequests/src/org/labkey/animalrequests/AnimalRequestsContainerListener.java +++ b/AnimalRequests/src/org/labkey/animalrequests/AnimalRequestsContainerListener.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2020-2026 Board of Regents of the University of Wisconsin System + * + * 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.animalrequests; import org.jetbrains.annotations.NotNull; diff --git a/AnimalRequests/src/org/labkey/animalrequests/AnimalRequestsController.java b/AnimalRequests/src/org/labkey/animalrequests/AnimalRequestsController.java index 4d484094c..fcff94b27 100644 --- a/AnimalRequests/src/org/labkey/animalrequests/AnimalRequestsController.java +++ b/AnimalRequests/src/org/labkey/animalrequests/AnimalRequestsController.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2020-2026 Board of Regents of the University of Wisconsin System + * + * 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.animalrequests; import org.labkey.api.action.SpringActionController; diff --git a/AnimalRequests/src/org/labkey/animalrequests/AnimalRequestsManager.java b/AnimalRequests/src/org/labkey/animalrequests/AnimalRequestsManager.java index c1db12abb..80a76789f 100644 --- a/AnimalRequests/src/org/labkey/animalrequests/AnimalRequestsManager.java +++ b/AnimalRequests/src/org/labkey/animalrequests/AnimalRequestsManager.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2020-2026 Board of Regents of the University of Wisconsin System + * + * 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.animalrequests; public class AnimalRequestsManager diff --git a/AnimalRequests/src/org/labkey/animalrequests/AnimalRequestsModule.java b/AnimalRequests/src/org/labkey/animalrequests/AnimalRequestsModule.java index 99eef4c3c..ca07a09db 100644 --- a/AnimalRequests/src/org/labkey/animalrequests/AnimalRequestsModule.java +++ b/AnimalRequests/src/org/labkey/animalrequests/AnimalRequestsModule.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2020-2026 Board of Regents of the University of Wisconsin System + * + * 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.animalrequests; import org.jetbrains.annotations.NotNull; diff --git a/AnimalRequests/src/org/labkey/animalrequests/AnimalRequestsSchema.java b/AnimalRequests/src/org/labkey/animalrequests/AnimalRequestsSchema.java index 03f8d3100..22472e1df 100644 --- a/AnimalRequests/src/org/labkey/animalrequests/AnimalRequestsSchema.java +++ b/AnimalRequests/src/org/labkey/animalrequests/AnimalRequestsSchema.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2021-2026 Board of Regents of the University of Wisconsin System + * + * 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.animalrequests; import org.labkey.api.data.DbSchema; diff --git a/AnimalRequests/webpack.config.js b/AnimalRequests/webpack.config.js index da25fb460..8f4c61750 100644 --- a/AnimalRequests/webpack.config.js +++ b/AnimalRequests/webpack.config.js @@ -1,3 +1,8 @@ +/* + * Copyright (c) 2021-2026 Board of Regents of the University of Wisconsin System + * + * Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0 + */ require("@babel/polyfill"); var path = require("path"); diff --git a/AnimalRequests/webpack/dev-server.js b/AnimalRequests/webpack/dev-server.js index ac81638de..a51d62216 100644 --- a/AnimalRequests/webpack/dev-server.js +++ b/AnimalRequests/webpack/dev-server.js @@ -1,3 +1,8 @@ +/* + * Copyright (c) 2020-2026 Board of Regents of the University of Wisconsin System + * + * Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0 + */ var express = require('express'); var webpack = require('webpack'); var cors = require('cors'); diff --git a/AnimalRequests/webpack/dev-style.config.js b/AnimalRequests/webpack/dev-style.config.js index bf8b6eefa..b5b5dfa13 100644 --- a/AnimalRequests/webpack/dev-style.config.js +++ b/AnimalRequests/webpack/dev-style.config.js @@ -1,3 +1,8 @@ +/* + * Copyright (c) 2020-2026 Board of Regents of the University of Wisconsin System + * + * Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0 + */ const path = require("path"); var ExtractTextPlugin = require('extract-text-webpack-plugin'); diff --git a/AnimalRequests/webpack/dev.config.js b/AnimalRequests/webpack/dev.config.js index e6c840c42..7e22a67d7 100644 --- a/AnimalRequests/webpack/dev.config.js +++ b/AnimalRequests/webpack/dev.config.js @@ -1,3 +1,8 @@ +/* + * Copyright (c) 2020-2026 Board of Regents of the University of Wisconsin System + * + * Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0 + */ require("babel-polyfill"); const path = require("path"); const webpack = require("webpack"); diff --git a/AnimalRequests/webpack/prod.config.js b/AnimalRequests/webpack/prod.config.js index 8260faff5..c7bf5e1a5 100644 --- a/AnimalRequests/webpack/prod.config.js +++ b/AnimalRequests/webpack/prod.config.js @@ -1,3 +1,8 @@ +/* + * Copyright (c) 2020-2026 Board of Regents of the University of Wisconsin System + * + * Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0 + */ require("@babel/polyfill"); var webpack = require("webpack"); var path = require("path"); diff --git a/ApiKey/api-src/org/labkey/apikey/api/ApiKey.java b/ApiKey/api-src/org/labkey/apikey/api/ApiKey.java index 846a3321b..2474e92e5 100644 --- a/ApiKey/api-src/org/labkey/apikey/api/ApiKey.java +++ b/ApiKey/api-src/org/labkey/apikey/api/ApiKey.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2016-2026 Board of Regents of the University of Wisconsin System + * + * 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.apikey.api; import org.labkey.api.module.Module; diff --git a/ApiKey/api-src/org/labkey/apikey/api/ApiKeyForm.java b/ApiKey/api-src/org/labkey/apikey/api/ApiKeyForm.java index 8705bcd04..04004d604 100644 --- a/ApiKey/api-src/org/labkey/apikey/api/ApiKeyForm.java +++ b/ApiKey/api-src/org/labkey/apikey/api/ApiKeyForm.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2016-2026 Board of Regents of the University of Wisconsin System + * + * 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.apikey.api; /** diff --git a/ApiKey/api-src/org/labkey/apikey/api/ApiKeyProvider.java b/ApiKey/api-src/org/labkey/apikey/api/ApiKeyProvider.java index bcf0c0f35..47b4f3b38 100644 --- a/ApiKey/api-src/org/labkey/apikey/api/ApiKeyProvider.java +++ b/ApiKey/api-src/org/labkey/apikey/api/ApiKeyProvider.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2016-2026 Board of Regents of the University of Wisconsin System + * + * 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.apikey.api; import org.json.JSONObject; diff --git a/ApiKey/api-src/org/labkey/apikey/api/ApiKeyService.java b/ApiKey/api-src/org/labkey/apikey/api/ApiKeyService.java index d5b5d5798..562525197 100644 --- a/ApiKey/api-src/org/labkey/apikey/api/ApiKeyService.java +++ b/ApiKey/api-src/org/labkey/apikey/api/ApiKeyService.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2016-2026 Board of Regents of the University of Wisconsin System + * + * 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.apikey.api; import org.jetbrains.annotations.Nullable; diff --git a/ApiKey/api-src/org/labkey/apikey/api/JsonService.java b/ApiKey/api-src/org/labkey/apikey/api/JsonService.java index f8066649a..5b4e485f9 100644 --- a/ApiKey/api-src/org/labkey/apikey/api/JsonService.java +++ b/ApiKey/api-src/org/labkey/apikey/api/JsonService.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2016-2026 Board of Regents of the University of Wisconsin System + * + * 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.apikey.api; import org.json.JSONObject; diff --git a/ApiKey/api-src/org/labkey/apikey/api/JsonServiceManager.java b/ApiKey/api-src/org/labkey/apikey/api/JsonServiceManager.java index e412f034a..30720e62a 100644 --- a/ApiKey/api-src/org/labkey/apikey/api/JsonServiceManager.java +++ b/ApiKey/api-src/org/labkey/apikey/api/JsonServiceManager.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2016-2026 Board of Regents of the University of Wisconsin System + * + * 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.apikey.api; import org.apache.commons.collections4.map.CaseInsensitiveMap; diff --git a/ApiKey/api-src/org/labkey/apikey/api/exception/InvalidApiKey.java b/ApiKey/api-src/org/labkey/apikey/api/exception/InvalidApiKey.java index c47411867..da137b18b 100644 --- a/ApiKey/api-src/org/labkey/apikey/api/exception/InvalidApiKey.java +++ b/ApiKey/api-src/org/labkey/apikey/api/exception/InvalidApiKey.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2016-2026 Board of Regents of the University of Wisconsin System + * + * 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.apikey.api.exception; /** diff --git a/ApiKey/api-src/org/labkey/apikey/api/exception/ServiceDoesNotExist.java b/ApiKey/api-src/org/labkey/apikey/api/exception/ServiceDoesNotExist.java index c2eeb3be5..fc1e9785e 100644 --- a/ApiKey/api-src/org/labkey/apikey/api/exception/ServiceDoesNotExist.java +++ b/ApiKey/api-src/org/labkey/apikey/api/exception/ServiceDoesNotExist.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2016-2026 Board of Regents of the University of Wisconsin System + * + * 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.apikey.api.exception; /** diff --git a/ApiKey/api-src/org/labkey/apikey/api/exception/ServiceNotAllowed.java b/ApiKey/api-src/org/labkey/apikey/api/exception/ServiceNotAllowed.java index 3e20a9826..600e0660c 100644 --- a/ApiKey/api-src/org/labkey/apikey/api/exception/ServiceNotAllowed.java +++ b/ApiKey/api-src/org/labkey/apikey/api/exception/ServiceNotAllowed.java @@ -1,3 +1,18 @@ +/* + * Copyright (c) 2016-2026 Board of Regents of the University of Wisconsin System + * + * 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.apikey.api.exception; /** diff --git a/ApiKey/resources/schemas/apikey.xml b/ApiKey/resources/schemas/apikey.xml index f1a747408..fb171ec52 100644 --- a/ApiKey/resources/schemas/apikey.xml +++ b/ApiKey/resources/schemas/apikey.xml @@ -1,7 +1,7 @@