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

net.sf.extcos.selector.annotation.ArgumentKey Maven / Gradle / Ivy

package net.sf.extcos.selector.annotation;

import net.sf.extcos.util.Assert;

public class ArgumentKey {
	private final String key;

	public ArgumentKey(final String key) {
		Assert.notEmpty(key, IllegalArgumentException.class);
		this.key = key;
	}

	public String getKey() {
		return key;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy