All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cesecore.audit.enums.ModuleTypeHolder Maven / Gradle / Ivy

/*************************************************************************
 *                                                                       *
 *  CESeCore: CE Security Core                                           *
 *                                                                       *
 *  This software is free software; you can redistribute it and/or       *
 *  modify it under the terms of the GNU Lesser General Public           *
 *  License as published by the Free Software Foundation; either         *
 *  version 2.1 of the License, or any later version.                    *
 *                                                                       *
 *  See terms of license at gnu.org.                                     *
 *                                                                       *
 *************************************************************************/
package org.cesecore.audit.enums;

/**
 * Simple implementation of ModuleType that holds the identifier.
 * 
 * @version $Id: ModuleTypeHolder.java 26796 2017-10-12 04:29:58Z anatom $
 */
public class ModuleTypeHolder implements ModuleType {

	private static final long serialVersionUID = 1L;

	private final String value;
	
	public ModuleTypeHolder(final String value) {
		this.value = value;
	}
	
	@Override
	public String toString() {
		return value;
	}
	
	@Override
	public boolean equals(final ModuleType value) {
		if (value == null) {
			return false;
		}
		return this.value.equals(value.toString());
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy