aboutsummaryrefslogtreecommitdiffstats
path: root/flags/src/main/java/com/yahoo/vespa/flags/FlagSerializer.java
blob: 8362574630cfc0003dc70d9e1c013a9710627a4d (plain) (blame)
1
2
3
4
5
6
7
8
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
package com.yahoo.vespa.flags;

/**
 * @author hakonhall
 */
public interface FlagSerializer<T> extends Serializer<T>, Deserializer<T> {
}