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

com.messners.gitlab.api.models.Parent Maven / Gradle / Ivy

Go to download

GitLab API provides a full featured Java API for working with GitLab repositories via the GitLab REST API

There is a newer version: 4.0.4
Show newest version
package com.messners.gitlab.api.models;

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

@XmlRootElement
@XmlAccessorType (XmlAccessType.FIELD)
public class Parent {
	
	private String id;
	
	public String getId () {
		return this.id;
	}

	public void setId (String id) {
		this.id = id;
	}		
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy