All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.commons.configuration.attributes.AttributeCopier Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.commons.configuration.attributes;

/**
 * AttributeCopier. Usually an attribute is copied by using the {@link Object#clone()} method. When
 * this method is not enough, you can provide a custom attribute copier by implementing this
 * interface
 *
 * @author Tristan Tarrant
 * @since 7.2
 */
public interface AttributeCopier {
   public abstract T copyAttribute(T attribute);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy