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

ch.sbb.releasetrain.utils.models.jenkins.JenkinsJobList Maven / Gradle / Ivy

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements;
 * and to You under the Apache License, Version 2.0.
 */
package ch.sbb.releasetrain.utils.models.jenkins;

import java.util.ArrayList;
import java.util.List;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;

/**
 *
 * 
 *
 * @author u203244 (Daniel Marthaler)
 * @version $Id: $
 * @since 2.0.9, 2015
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "listView")
public class JenkinsJobList {

    @XmlElement(name = "job")
    private List jobs = new ArrayList<>();

    public List getJobs() {
        return jobs;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy