/* * [Signing.java] * * Summary: enum to track whether project is signed. * * Copyright: (c) 2007-2017 Roedy Green, Canadian Mind Products, http://mindprod.com * * Licence: This software may be copied and used freely for any purpose but military. * http://mindprod.com/contact/nonmil.html * * Requires: JDK 1.8+ * * Created with: JetBrains IntelliJ IDEA IDE http://www.jetbrains.com/idea/ * * Version History: * 1.0 2007-05-12 */ package com.mindprod.zzz; /** * enum to track whether project is signed. * * @author Roedy Green, Canadian Mind Products * @version 1.0 2007-05-12 * @since 2007-05-12 */ enum Signing { /** * digitally signed. */ SIGNED, /** * not digitally signed. */ UNSIGNED }