blob: 6c298b4002c36f9afff7138164d66af8b576290e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 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.ats.api.workflow;
import java.util.LinkedList;
import java.util.List;
import org.eclipse.osee.ats.api.IAtsObject;
import org.eclipse.osee.ats.api.config.JaxAtsObject;
/**
* @author Donald G. Dunne
*/
public class JaxAtsObjects {
List<JaxAtsObject> atsObjects = new LinkedList<>();
public List<JaxAtsObject> getAtsObjects() {
return atsObjects;
}
public void setAtsObjects(List<JaxAtsObject> atsObjects) {
this.atsObjects = atsObjects;
}
public static JaxAtsObject create(IAtsObject atsObject) {
JaxAtsObject obj = new JaxAtsObject();
obj.setName(atsObject.getName());
obj.setUuid(atsObject.getId());
return obj;
}
}