blob: 927c7502bea49c840b9691fdd566fb86aae5f735 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2007 Boeing.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Boeing - initial API and implementation
*******************************************************************************/
package org.eclipse.osee.ote.core.log.record;
import org.codehaus.jackson.annotate.JsonProperty;
import org.eclipse.osee.ote.core.environment.interfaces.ITestEnvironmentAccessor;
import org.eclipse.osee.ote.core.log.TestLevel;
/**
* @author Ryan D. Brooks
*/
public class RequirementRecord extends TestRecord {
private static final long serialVersionUID = -3533522844275324310L;
/**
* RequirementRecord Constructor. Sets up a Requirement log message.
*
* @param source The object requesting the logging.
* @param msg The log message.
* @param timeStamp <b>True </b> if a timestamp should be recorded, <b>False </b> if not.
*/
public RequirementRecord(ITestEnvironmentAccessor source, String msg, boolean timeStamp) {
super(source, TestLevel.REQUIREMENT, msg, timeStamp);
}
/**
* RequirementRecord Constructor. Sets up a Requirement log message.
*
* @param source The object requesting the logging.
* @param msg The log message.
*/
public RequirementRecord(ITestEnvironmentAccessor source, String msg) {
this(source, msg, true);
}
@JsonProperty
public String getRequirement() {
return getMessage();
}
}