blob: 6b0ba0055cd4ff97ad474dd187a499a387c210c2 [file] [log] [blame]
Yotam Harcholf3f11152013-09-05 16:47:16 -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 *
kjwon157bc85402015-02-12 15:07:42 +09009 * @author Andreas Wundsam {@literal <}andreas.wundsam@bigswitch.com{@literal >}
Yotam Harcholf3f11152013-09-05 16:47:16 -070010 */
11public @interface Immutable {
12
13}