/*
* 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.tomcat.dbcp.pool2;
/**
* A base implementation of KeyedPooledObjectFactory.
*
* All operations defined here are essentially no-op's. *
** This class is immutable, and therefore thread-safe. *
* * @see KeyedPooledObjectFactory * * @param* The default implementation is a no-op. *
* * @param key the key used when selecting the instance * @param p a {@code PooledObject} wrapping the instance to be destroyed */ @Override public void destroyObject(final K key, final PooledObject* The default implementation always returns {@code true}. *
* * @param key the key used when selecting the object * @param p a {@code PooledObject} wrapping the instance to be validated * @return alwaystrue in the default implementation
*/
@Override
public boolean validateObject(final K key, final PooledObject* The default implementation is a no-op. *
* * @param key the key used when selecting the object * @param p a {@code PooledObject} wrapping the instance to be activated */ @Override public void activateObject(final K key, final PooledObject* The default implementation is a no-op. *
* * @param key the key used when selecting the object * @param p a {@code PooledObject} wrapping the instance to be passivated */ @Override public void passivateObject(final K key, final PooledObject