From commits-return-13797-apmail-sis-commits-archive=sis.apache.org@sis.apache.org Wed Aug 12 23:56:14 2020 Return-Path: X-Original-To: apmail-sis-commits-archive@www.apache.org Delivered-To: apmail-sis-commits-archive@www.apache.org Received: from mailroute1-lw-us.apache.org (mailroute1-lw-us.apache.org [207.244.88.153]) by minotaur.apache.org (Postfix) with ESMTP id 3F1CC1A9E4 for ; Wed, 12 Aug 2020 23:56:14 +0000 (UTC) Received: from mail.apache.org (localhost [127.0.0.1]) by mailroute1-lw-us.apache.org (ASF Mail Server at mailroute1-lw-us.apache.org) with SMTP id E35E5125113 for ; Wed, 12 Aug 2020 23:56:13 +0000 (UTC) Received: (qmail 96794 invoked by uid 500); 12 Aug 2020 23:56:13 -0000 Delivered-To: apmail-sis-commits-archive@sis.apache.org Received: (qmail 96751 invoked by uid 500); 12 Aug 2020 23:56:13 -0000 Mailing-List: contact commits-help@sis.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: sis-dev@sis.apache.org Delivered-To: mailing list commits@sis.apache.org Received: (qmail 96654 invoked by uid 99); 12 Aug 2020 23:56:13 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Aug 2020 23:56:13 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 640B982437; Wed, 12 Aug 2020 23:56:13 +0000 (UTC) Date: Wed, 12 Aug 2020 23:56:14 +0000 To: "commits@sis.apache.org" Subject: [sis] 02/04: Add a temporary dummy class for allowing javadoc to pass. This is because javadoc requires to have at least one class to document. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: desruisseaux@apache.org In-Reply-To: <159727657279.7875.637356576734711789@gitbox.apache.org> References: <159727657279.7875.637356576734711789@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: sis X-Git-Refname: refs/heads/geoapi-4.0 X-Git-Reftype: branch X-Git-Rev: e238494d5eceffcef9e3e8f36a6279e382066cb0 X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20200812235613.640B982437@gitbox.apache.org> This is an automated email from the ASF dual-hosted git repository. desruisseaux pushed a commit to branch geoapi-4.0 in repository https://gitbox.apache.org/repos/asf/sis.git commit e238494d5eceffcef9e3e8f36a6279e382066cb0 Author: Martin Desruisseaux AuthorDate: Wed Aug 12 23:10:48 2020 +0200 Add a temporary dummy class for allowing javadoc to pass. This is because javadoc requires to have at least one class to document. --- .../main/java/org/apache/sis/services/Servlet.java | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/application/sis-webapp/src/main/java/org/apache/sis/services/Servlet.java b/application/sis-webapp/src/main/java/org/apache/sis/services/Servlet.java new file mode 100644 index 0000000..c3d4b5e --- /dev/null +++ b/application/sis-webapp/src/main/java/org/apache/sis/services/Servlet.java @@ -0,0 +1,26 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You 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.apache.sis.services; + + +/** + * Place-holder for future web services. + */ +public final class Servlet { + private Servlet() { + } +}