/* * Copyright @ 2013 CurisTEC, S.A.S. All Rights Reserved. */ package net.curisit.securis.db.common; /** * CodedEnum *

* Small contract for enums persisted as short codes */ public interface CodedEnum { /** * getCode

* Return the short string code for persistence/JSON. * * @return codeEnum */ String getCode(); }