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

com.jdroid.github.Rename Maven / Gradle / Ivy

There is a newer version: 0.9.4
Show newest version
/*******************************************************************************
 * 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