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

net.lo2k.repository.snapshot.SVSSnapshotRepository Maven / Gradle / Ivy

Go to download

SVS (Small Version System) is a small versioning tool to handle different versions of a java object in memory

The newest version!
/*
 * Copyright 2011 J?r?me Wax 
 * http://www.lo2k.net
 *
 * Licensed 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 net.lo2k.repository.snapshot;

import java.io.Serializable;
import java.util.HashMap;

public class SVSSnapshotRepository implements
		Serializable {
	/**
	 * 
	 */
	private static final long serialVersionUID = -1046148868458676870L;
	HashMap> history;

	public SVSSnapshotRepository() {
		history = new HashMap>();
	}

	public void put(SVSSnapshot snap) {
		history.put(snap.getRevisionNumber(), snap);
	}

	public SVSSnapshot get(String revision) {
		// System.out.println("get "+revision);
		return history.get(revision);
	}

	public int getSize() {
		int totalSize = 0;
		for (SVSSnapshot t : history.values()) {
			totalSize += t.getSize();
		}
		return totalSize;
	}

	public HashMap> getHistory() {
		return history;
	}

	public void setHistory(HashMap> history) {
		this.history = history;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy