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

com.alterioncorp.requestlogger.PropertyRegistry Maven / Gradle / Ivy

package com.alterioncorp.requestlogger;

import java.util.List;

public interface PropertyRegistry {

	void registerProperty(String property, int dataType);
	
	void unregisterProperty(String property);

	List getRegisteredProperties();
	
	int getDataType(String property);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy