blob: 5032dffc991a555bba3f4b1ae71c14fb6882f527 [file] [log] [blame]
/*********************************************************************
* Copyright (c) 2022 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.ote.core.framework.outfile;
/**
* @author Andy Jury
*/
public class AttributeJsonPojo {
private String typeName;
private String value;
public String getTypeName() {
return typeName;
}
public void setTypeName(String typeName) {
this.typeName = typeName;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
}