/**
 * (c) Richard Unger 2014
 */
package at.lfrz.magnolia.atk.availability;

/**
 * <b>AllowedTemplate</b><br/>
 * <p>
 * A simple descriptor for an allowed template.
 * Used in explicit configuration of allowed templates.
 * </p>
 * @author Richard Unger, (c) 2014
 */
public class AllowedTemplate {
	
	String template = null;
	
	String roles = null;
	
	String groups = null;
	
	

	/**
	 * @return the template
	 */
	public String getTemplate() {
		return template;
	}

	/**
	 * @param template the template to set
	 */
	public void setTemplate(String template) {
		this.template = template;
	}

	/**
	 * @return the roles
	 */
	public String getRoles() {
		return roles;
	}

	/**
	 * @param roles the roles to set
	 */
	public void setRoles(String roles) {
		this.roles = roles;
	}

	/**
	 * @return the groups
	 */
	public String getGroups() {
		return groups;
	}

	/**
	 * @param groups the groups to set
	 */
	public void setGroups(String groups) {
		this.groups = groups;
	}
	
	
}
