blob: 5de2171f77c1e82f6d294d7ed503ba4c7b69b966 [file] [log] [blame]
tom0eb04ca2014-08-25 14:34:51 -07001package org.projectfloodlight.openflow.annotations;
2
3/**
4 * This annotation marks a class that is considered externally immutable. I.e.,
5 * the externally visible state of the class will not change after its
6 * construction. Such a class can be freely shared between threads and does not
7 * require defensive copying (don't call clone).
8 *
9 * @author Andreas Wundsam <andreas.wundsam@bigswitch.com>
10 */
11public @interface Immutable {
12
13}