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

io.starter.ignite.model.DataPersister Maven / Gradle / Ivy

There is a newer version: 0.9.25
Show newest version
/**
 * 
 */
package io.starter.ignite.model;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * TODO: repurpose for React Component Gen
 * 
 * @author John McMahon (@TechnoCharms)
 *
 */
public class DataPersister {

	protected static final Logger logger = LoggerFactory
			.getLogger(DataPersister.class);

	public static Object read(String valueOf) {
		logger.info("DataPersister.read: " + valueOf);
		return valueOf;
	}

	public static String persist(String clearTextValue) {
		logger.info("DataPersister.persist: " + clearTextValue);
		return clearTextValue;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy