This is an automated email from the ASF dual-hosted git repository.

markt-asf pushed a commit to branch 11.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git

commit 0413ff874fb213321948f08795e47aebfed53840
Author: remm <[email protected]>
AuthorDate: Tue Jun 30 16:22:23 2026 +0200

    Drop deprecated code
---
 .../catalina/storeconfig/StoreDescription.java     | 68 ----------------------
 1 file changed, 68 deletions(-)

diff --git a/java/org/apache/catalina/storeconfig/StoreDescription.java 
b/java/org/apache/catalina/storeconfig/StoreDescription.java
index c7ec6cf694..9d40bd1194 100644
--- a/java/org/apache/catalina/storeconfig/StoreDescription.java
+++ b/java/org/apache/catalina/storeconfig/StoreDescription.java
@@ -82,8 +82,6 @@ public class StoreDescription {
 
     private IStoreFactory storeFactory;
 
-    private String storeWriterClass;
-
     private boolean children = false;
 
     private List<String> transientAttributes;
@@ -218,28 +216,6 @@ public class StoreDescription {
         this.storeFactory = storeFactory;
     }
 
-    /**
-     * Returns the fully qualified class name of the StoreWriter 
implementation.
-     *
-     * @return the StoreWriter class name
-     * @deprecated Will be removed in Tomcat 12
-     */
-    @Deprecated
-    public String getStoreWriterClass() {
-        return storeWriterClass;
-    }
-
-    /**
-     * Sets the fully qualified class name of the StoreWriter implementation.
-     *
-     * @param storeWriterClass the StoreWriter class name
-     * @deprecated Will be removed in Tomcat 12
-     */
-    @Deprecated
-    public void setStoreWriterClass(String storeWriterClass) {
-        this.storeWriterClass = storeWriterClass;
-    }
-
     /**
      * Returns the XML tag name for this description.
      *
@@ -276,28 +252,6 @@ public class StoreDescription {
         this.tagClass = tagClass;
     }
 
-    /**
-     * Returns the list of attribute names that should not be persisted.
-     *
-     * @return the list of transient attribute names
-     * @deprecated Will be removed in Tomcat 12
-     */
-    @Deprecated
-    public List<String> getTransientAttributes() {
-        return transientAttributes;
-    }
-
-    /**
-     * Sets the list of attribute names that should not be persisted.
-     *
-     * @param transientAttributes the list of transient attribute names
-     * @deprecated Will be removed in Tomcat 12
-     */
-    @Deprecated
-    public void setTransientAttributes(List<String> transientAttributes) {
-        this.transientAttributes = transientAttributes;
-    }
-
     /**
      * Adds an attribute name to the list of transient attributes that should 
not be persisted.
      *
@@ -321,28 +275,6 @@ public class StoreDescription {
         }
     }
 
-    /**
-     * Returns the list of child class names that should not be persisted.
-     *
-     * @return the list of transient child class names
-     * @deprecated Will be removed in Tomcat 12
-     */
-    @Deprecated
-    public List<String> getTransientChildren() {
-        return transientChildren;
-    }
-
-    /**
-     * Sets the list of child class names that should not be persisted.
-     *
-     * @param transientChildren the list of transient child class names
-     * @deprecated Will be removed in Tomcat 12
-     */
-    @Deprecated
-    public void setTransientChildren(List<String> transientChildren) {
-        this.transientChildren = transientChildren;
-    }
-
     /**
      * Adds a child class name to the list of transient children that should 
not be persisted.
      *


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to