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

com.relevantcodes.extentreports.markup.FontAwesomeIco Maven / Gradle / Ivy

There is a newer version: 2.41.2
Show newest version
/*
Copyright 2015 ExtentReports committer(s)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

	http://www.apache.org/licenses/LICENSE-2.0
	
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package com.relevantcodes.extentreports.markup;

import java.util.HashMap;

import com.relevantcodes.extentreports.LogStatus;

public class FontAwesomeIco {
	private static HashMap map = new HashMap();
	
	public static void override(LogStatus status, String icon) {
		map.put(status, icon);
	}
	
	public static String get(LogStatus status) {
		if (map.containsKey(status))
	        return map.get(status);
	
		if(status.toString().toLowerCase().equals(new String("fail"))) {
			return "times";
		}
		else if (status.toString().toLowerCase().equals(new String("error"))) {
			return "exclamation-circle";
		}
		else if (status.toString().toLowerCase().equals(new String("fatal"))) {
			return "exclamation-circle";
		}
		else if (status.toString().toLowerCase().equals(new String("pass"))) {
			return "check";
		}
		else if (status.toString().toLowerCase().equals(new String("info"))) {
			return "info";
		}
		else if (status.toString().toLowerCase().equals(new String("warning"))) {
			return "warning";
		}
		else if (status.toString().toLowerCase().equals(new String("skip"))) {
			return "angle-double-right";
		}
		else {
	        return "question";
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy