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

com.marvelution.maven.components.migration.manager.MigrationResult Maven / Gradle / Ivy

The newest version!
/*
 * Licensed to Marvelution under one or more contributor license 
 * agreements.  See the NOTICE file distributed with this work 
 * for additional information regarding copyright ownership.
 * Marvelution licenses this file to you under the Apache License,
 * Version 2.0 (the "License"); you may not use this file except
 * in compliance with the License.
 * You may obtain a copy of the License at
 *
 *  http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied. See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

package com.marvelution.maven.components.migration.manager;

/**
 * Migration Result object
 * 
 * @author Mark Rekveld
 */
public class MigrationResult {

	/**
	 * Result codes
	 */
	public static final int UNDEFINED = -1, SUCCESS = 0, ERROR = 1;

	/**
	 * Result code
	 */
	private int resultCode = UNDEFINED;

	/**
	 * Start time
	 */
	private long startTime;

	/**
	 * End time
	 */
	private long endTime;

	/**
	 * Gets result code
	 * 
	 * @return result code
	 */
	public int getResultCode() {
		return resultCode;
	}

	/**
	 * Sets result code
	 * 
	 * @param resultCode the result code to set
	 */
	public void setResultCode(int resultCode) {
		this.resultCode = resultCode;
	}

	/**
	 * Gets the start time
	 * 
	 * @return the start time
	 */
	public long getStartTime() {
		return startTime;
	}

	/**
	 * Sets start time
	 * 
	 * @param startTime the start time to set
	 */
	public void setStartTime(long startTime) {
		this.startTime = startTime;
	}

	/**
	 * Gets end time
	 * 
	 * @return end time
	 */
	public long getEndTime() {
		return endTime;
	}

	/**
	 * Sets end time
	 * 
	 * @param endTime the end time to set
	 */
	public void setEndTime(long endTime) {
		this.endTime = endTime;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy