aboutsummaryrefslogtreecommitdiffstats
path: root/processing/src/main/java/com/yahoo/processing/request/properties/PublicCloneable.java
blob: f15b1a933348640c7f4747359c42dd243587c8e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.processing.request.properties;

/**
 * This interface publicly exposes the clone method.
 * Classes which are used in request properties may implement this to allow faster cloning of the request.
 *
 * @author bratseth
 * @since  5.66
 */
public interface PublicCloneable<T> extends Cloneable {

    public T clone();

}