blob: b483b38df60d2093049ff2c9cdc5c4bf990e0dd2 [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2018 Boeing
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Boeing - initial API and implementation
**********************************************************************/
package org.eclipse.osee.disposition.model;
import javax.xml.bind.annotation.XmlRootElement;
/**
* @author Angel Avila
*/
@XmlRootElement(name = "CiTestPoint")
public class CiTestPoint {
private String pass;
private String fail;
public String getPass() {
return pass;
}
public void setPass(String pass) {
this.pass = pass;
}
public String getFail() {
return fail;
}
public void setFail(String fail) {
this.fail = fail;
}
}