From 72bcc04b93591c774a811c29aed0b88bec891d96 Mon Sep 17 00:00:00 2001 From: Soroosh Taefi Date: Mon, 9 Dec 2024 14:09:30 +0200 Subject: [PATCH] chore: add missing license headers to signals package (#2957) * chore: add missing license headers to signals package --- .../com/vaadin/hilla/signals/ListSignal.java | 16 +++++++++++++++ .../vaadin/hilla/signals/NumberSignal.java | 16 +++++++++++++++ .../java/com/vaadin/hilla/signals/Signal.java | 16 +++++++++++++++ .../com/vaadin/hilla/signals/ValueSignal.java | 16 +++++++++++++++ .../signals/config/SignalsConfiguration.java | 16 +++++++++++++++ .../core/event/InvalidEventTypeException.java | 16 +++++++++++++++ .../signals/core/event/ListStateEvent.java | 16 +++++++++++++++ .../core/event/MissingFieldException.java | 16 +++++++++++++++ .../hilla/signals/core/event/StateEvent.java | 18 +++++++++++++++-- .../core/registry/SecureSignalsRegistry.java | 16 +++++++++++++++ .../core/registry/SignalsRegistry.java | 16 +++++++++++++++ .../hilla/signals/handler/SignalsHandler.java | 16 +++++++++++++++ .../signals/operation/IncrementOperation.java | 16 +++++++++++++++ .../operation/ListInsertOperation.java | 19 +++++++++++++++++- .../operation/ListRemoveOperation.java | 20 +++++++++++++++++-- .../signals/operation/OperationValidator.java | 16 +++++++++++++++ .../operation/ReplaceValueOperation.java | 16 +++++++++++++++ .../signals/operation/SetValueOperation.java | 16 +++++++++++++++ .../signals/operation/SignalOperation.java | 16 +++++++++++++++ .../signals/operation/ValidationResult.java | 16 +++++++++++++++ .../signals/operation/ValueOperation.java | 16 +++++++++++++++ 21 files changed, 340 insertions(+), 5 deletions(-) diff --git a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/ListSignal.java b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/ListSignal.java index df6560b851..9589b46cb1 100644 --- a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/ListSignal.java +++ b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/ListSignal.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2024 Vaadin Ltd. + * + * 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 com.vaadin.hilla.signals; import com.fasterxml.jackson.databind.node.ObjectNode; diff --git a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/NumberSignal.java b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/NumberSignal.java index 37905bafab..f74cd41068 100644 --- a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/NumberSignal.java +++ b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/NumberSignal.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2024 Vaadin Ltd. + * + * 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 com.vaadin.hilla.signals; import com.fasterxml.jackson.databind.node.ObjectNode; diff --git a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/Signal.java b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/Signal.java index c574bbe11c..ea7a6ae45f 100644 --- a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/Signal.java +++ b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/Signal.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2024 Vaadin Ltd. + * + * 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 com.vaadin.hilla.signals; import com.fasterxml.jackson.databind.ObjectMapper; diff --git a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/ValueSignal.java b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/ValueSignal.java index 837e545058..d3e9121aea 100644 --- a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/ValueSignal.java +++ b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/ValueSignal.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2024 Vaadin Ltd. + * + * 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 com.vaadin.hilla.signals; import com.fasterxml.jackson.databind.node.ObjectNode; diff --git a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/config/SignalsConfiguration.java b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/config/SignalsConfiguration.java index 345b031608..7d7493771b 100644 --- a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/config/SignalsConfiguration.java +++ b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/config/SignalsConfiguration.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2024 Vaadin Ltd. + * + * 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 com.vaadin.hilla.signals.config; import com.fasterxml.jackson.databind.ObjectMapper; diff --git a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/core/event/InvalidEventTypeException.java b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/core/event/InvalidEventTypeException.java index 4bdff68f92..71a1d03480 100644 --- a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/core/event/InvalidEventTypeException.java +++ b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/core/event/InvalidEventTypeException.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2024 Vaadin Ltd. + * + * 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 com.vaadin.hilla.signals.core.event; /** diff --git a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/core/event/ListStateEvent.java b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/core/event/ListStateEvent.java index 54a6dedfc7..d0a29f1a71 100644 --- a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/core/event/ListStateEvent.java +++ b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/core/event/ListStateEvent.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2024 Vaadin Ltd. + * + * 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 com.vaadin.hilla.signals.core.event; import com.fasterxml.jackson.databind.JsonNode; diff --git a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/core/event/MissingFieldException.java b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/core/event/MissingFieldException.java index 902c21f4ab..d893b593dd 100644 --- a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/core/event/MissingFieldException.java +++ b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/core/event/MissingFieldException.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2024 Vaadin Ltd. + * + * 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 com.vaadin.hilla.signals.core.event; /** diff --git a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/core/event/StateEvent.java b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/core/event/StateEvent.java index 80c3fb3cba..b999c85958 100644 --- a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/core/event/StateEvent.java +++ b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/core/event/StateEvent.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2024 Vaadin Ltd. + * + * 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 com.vaadin.hilla.signals.core.event; import com.fasterxml.jackson.databind.JsonNode; @@ -7,8 +23,6 @@ import java.util.Arrays; import java.util.Objects; import java.util.Optional; -import java.util.function.Function; -import java.util.function.Supplier; /** * A utility class for representing state events out of an ObjectNode. This diff --git a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/core/registry/SecureSignalsRegistry.java b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/core/registry/SecureSignalsRegistry.java index 5bb47115d3..682a2f5acc 100644 --- a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/core/registry/SecureSignalsRegistry.java +++ b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/core/registry/SecureSignalsRegistry.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2024 Vaadin Ltd. + * + * 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 com.vaadin.hilla.signals.core.registry; import com.fasterxml.jackson.databind.node.ObjectNode; diff --git a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/core/registry/SignalsRegistry.java b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/core/registry/SignalsRegistry.java index 23b372c0cb..e6b9e86cbb 100644 --- a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/core/registry/SignalsRegistry.java +++ b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/core/registry/SignalsRegistry.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2024 Vaadin Ltd. + * + * 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 com.vaadin.hilla.signals.core.registry; import com.vaadin.hilla.signals.Signal; diff --git a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/handler/SignalsHandler.java b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/handler/SignalsHandler.java index fa314c672b..b4868c896f 100644 --- a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/handler/SignalsHandler.java +++ b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/handler/SignalsHandler.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2024 Vaadin Ltd. + * + * 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 com.vaadin.hilla.signals.handler; import com.fasterxml.jackson.databind.node.ObjectNode; diff --git a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/IncrementOperation.java b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/IncrementOperation.java index 2a50b5b6c8..d98ab5d34d 100644 --- a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/IncrementOperation.java +++ b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/IncrementOperation.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2024 Vaadin Ltd. + * + * 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 com.vaadin.hilla.signals.operation; public record IncrementOperation(String operationId, Double value) implements ValueOperation { diff --git a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/ListInsertOperation.java b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/ListInsertOperation.java index 47ea01aa28..eef3e4496e 100644 --- a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/ListInsertOperation.java +++ b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/ListInsertOperation.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2024 Vaadin Ltd. + * + * 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 com.vaadin.hilla.signals.operation; import com.vaadin.hilla.signals.core.event.ListStateEvent; @@ -5,4 +21,5 @@ public record ListInsertOperation( String operationId, ListStateEvent.InsertPosition position, - T value) implements ValueOperation {} + T value +) implements ValueOperation {} diff --git a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/ListRemoveOperation.java b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/ListRemoveOperation.java index ed88c6b62e..46dac9a1a1 100644 --- a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/ListRemoveOperation.java +++ b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/ListRemoveOperation.java @@ -1,8 +1,24 @@ +/* + * Copyright 2000-2024 Vaadin Ltd. + * + * 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 com.vaadin.hilla.signals.operation; import com.vaadin.hilla.signals.core.event.ListStateEvent; public record ListRemoveOperation( String operationId, - ListStateEvent.ListEntry entryToRemove) - implements SignalOperation {} + ListStateEvent.ListEntry entryToRemove +) implements SignalOperation {} diff --git a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/OperationValidator.java b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/OperationValidator.java index a58a7bc775..de0b751b09 100644 --- a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/OperationValidator.java +++ b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/OperationValidator.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2024 Vaadin Ltd. + * + * 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 com.vaadin.hilla.signals.operation; @FunctionalInterface diff --git a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/ReplaceValueOperation.java b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/ReplaceValueOperation.java index 3a64d1f183..55764d947b 100644 --- a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/ReplaceValueOperation.java +++ b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/ReplaceValueOperation.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2024 Vaadin Ltd. + * + * 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 com.vaadin.hilla.signals.operation; import com.fasterxml.jackson.databind.node.ObjectNode; diff --git a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/SetValueOperation.java b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/SetValueOperation.java index 78bc5a8c1c..1a3d7081b6 100644 --- a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/SetValueOperation.java +++ b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/SetValueOperation.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2024 Vaadin Ltd. + * + * 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 com.vaadin.hilla.signals.operation; import com.fasterxml.jackson.databind.node.ObjectNode; diff --git a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/SignalOperation.java b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/SignalOperation.java index 6f38edac7c..28269a8407 100644 --- a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/SignalOperation.java +++ b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/SignalOperation.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2024 Vaadin Ltd. + * + * 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 com.vaadin.hilla.signals.operation; public interface SignalOperation { diff --git a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/ValidationResult.java b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/ValidationResult.java index 2fc7c03403..1db905bcec 100644 --- a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/ValidationResult.java +++ b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/ValidationResult.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2024 Vaadin Ltd. + * + * 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 com.vaadin.hilla.signals.operation; public class ValidationResult { diff --git a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/ValueOperation.java b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/ValueOperation.java index 61d8b3f9e4..c1fc427a85 100644 --- a/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/ValueOperation.java +++ b/packages/java/endpoint/src/main/java/com/vaadin/hilla/signals/operation/ValueOperation.java @@ -1,3 +1,19 @@ +/* + * Copyright 2000-2024 Vaadin Ltd. + * + * 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 com.vaadin.hilla.signals.operation; public interface ValueOperation extends SignalOperation {