com.jdroid.github.Rename Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdroid-java-github Show documentation
Show all versions of jdroid-java-github Show documentation
Java Connector for GitHub API
/*******************************************************************************
* Copyright (c) 2015 Jon Ander Peñalba .
* 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:
* Jon Ander Peñalba - initial API and implementation
*******************************************************************************/
package com.jdroid.github;
import java.io.Serializable;
/**
* Rename model class
*/
public class Rename implements Serializable {
/** serialVersionUID */;
private final static long serialVersionUID = -4700399891066053425L;
private String from;
private String to;
/**
* @return from
*/
public String getFrom() {
return from;
}
/**
* @param from
* @return this rename model
*/
public Rename setFrom(String from) {
this.from = from;
return this;
}
/**
* @return to
*/
public String getTo() {
return to;
}
/**
* @param to
* @return this rename model
*/
public Rename setTo(String to) {
this.to = to;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy