This is an automated email from the ASF dual-hosted git repository.
russellspitzer pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new ec7b7a3 Clean up unused annotation (#315)
ec7b7a3 is described below
commit ec7b7a3f2556a0dff36e02bbbc10a2181b5965a3
Author: Yufei Gu <[email protected]>
AuthorDate: Wed Sep 25 08:00:17 2024 -0700
Clean up unused annotation (#315)
Co-authored-by: Yufei Gu <yufei.apache.org>
---
.../apache/polaris/service/resource/TimedApi.java | 41 ----------------------
1 file changed, 41 deletions(-)
diff --git
a/polaris-service/src/main/java/org/apache/polaris/service/resource/TimedApi.java
b/polaris-service/src/main/java/org/apache/polaris/service/resource/TimedApi.java
deleted file mode 100644
index a1cbc57..0000000
---
a/polaris-service/src/main/java/org/apache/polaris/service/resource/TimedApi.java
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- * 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.polaris.service.resource;
-
-import java.lang.annotation.ElementType;
-import java.lang.annotation.Retention;
-import java.lang.annotation.RetentionPolicy;
-import java.lang.annotation.Target;
-import org.apache.polaris.service.TimedApplicationEventListener;
-
-/**
- * Annotation to mark methods for timing API calls and counting errors. The
backing logic is
- * controlled by {@link TimedApplicationEventListener}, therefore this
annotation is only effective
- * for Jersey resource methods.
- */
-@Retention(RetentionPolicy.RUNTIME)
-@Target(ElementType.METHOD)
-public @interface TimedApi {
- /**
- * The name of the metric to be recorded.
- *
- * @return the metric name
- */
- String value();
-}