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

net.anotheria.asg.generator.meta.FederatedModuleDef Maven / Gradle / Ivy

package net.anotheria.asg.generator.meta;
/**
 * Definition of a federated module. Each federated module is mapped to a key.
 *
 * @author another
 * @version $Id: $Id
 */
public class FederatedModuleDef{
	/**
	 * Name of the Module.
	 */
	private String name;
	/**
	 * Key of the module.
	 */
	private String key;

	FederatedModuleDef(String aKey, String aName){
		name = aName;
		key = aKey;
	}

	/**
	 * 

Getter for the field key.

* * @return a {@link java.lang.String} object. */ public String getKey() { return key; } /** *

Getter for the field name.

* * @return a {@link java.lang.String} object. */ public String getName() { return name; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy