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

com.ecfeed.core.genservice.schema.ResultProgressSchema Maven / Gradle / Ivy

package com.ecfeed.core.genservice.schema;

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

@XmlRootElement
@XmlAccessorType(XmlAccessType.FIELD)
public class ResultProgressSchema implements IMainSchema {

	private int progress;
	
	public ResultProgressSchema() {}
	
	public int getProgress() {
		return progress;
	}

	public void setProgress(int progress) {
		this.progress = progress;
	}

	@Override
	public String toString() {
		return "Progress: " + progress;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy