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

org.wildfly.swarm.config.jsf.Jsf Maven / Gradle / Ivy

There is a newer version: 0.3.4
Show newest version
package org.wildfly.swarm.config.jsf;

import org.wildfly.config.runtime.Implicit;
import org.wildfly.config.runtime.Address;
import org.wildfly.config.runtime.ModelNodeBinding;
/**
 * The JSF subsystem
 */
@Address("/subsystem=jsf")
@Implicit
public class Jsf {

	private String key;
	private String defaultJsfImplSlot;

	public Jsf() {
		this.key = "jsf";
	}

	public String getKey() {
		return this.key;
	}

	/**
	 * Default JSF implementation slot
	 */
	@ModelNodeBinding(detypedName = "default-jsf-impl-slot")
	public String defaultJsfImplSlot() {
		return this.defaultJsfImplSlot;
	}

	/**
	 * Default JSF implementation slot
	 */
	@SuppressWarnings("unchecked")
	public T defaultJsfImplSlot(String value) {
		this.defaultJsfImplSlot = value;
		return (T) this;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy