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

com.sun.enterprise.admin.servermgmt.xml.domaininfo.TemplateInfo Maven / Gradle / Ivy

//
// This file was generated by the Eclipse Implementation of JAXB, v4.0.1 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
//


package com.sun.enterprise.admin.servermgmt.xml.domaininfo;

import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for TemplateInfo complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

{@code
 * 
 *   
 *     
 *       
 *       
 *       
 *       
 *       
 *       
 *       
 *     
 *   
 * 
 * }
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TemplateInfo", namespace = "http://xmlns.oracle.com/cie/glassfish/domain-template") public class TemplateInfo { @XmlAttribute(name = "name", required = true) protected String name; @XmlAttribute(name = "version", required = true) protected String version; @XmlAttribute(name = "author", required = true) protected String author; @XmlAttribute(name = "category") protected String category; @XmlAttribute(name = "type", required = true) protected TemplateType type; @XmlAttribute(name = "server-type") protected String serverType; @XmlAttribute(name = "description") protected String description; /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the version property. * * @return * possible object is * {@link String } * */ public String getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link String } * */ public void setVersion(String value) { this.version = value; } /** * Gets the value of the author property. * * @return * possible object is * {@link String } * */ public String getAuthor() { return author; } /** * Sets the value of the author property. * * @param value * allowed object is * {@link String } * */ public void setAuthor(String value) { this.author = value; } /** * Gets the value of the category property. * * @return * possible object is * {@link String } * */ public String getCategory() { return category; } /** * Sets the value of the category property. * * @param value * allowed object is * {@link String } * */ public void setCategory(String value) { this.category = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link TemplateType } * */ public TemplateType getType() { if (type == null) { return TemplateType.DOMAIN_TEMPLATE; } else { return type; } } /** * Sets the value of the type property. * * @param value * allowed object is * {@link TemplateType } * */ public void setType(TemplateType value) { this.type = value; } /** * Gets the value of the serverType property. * * @return * possible object is * {@link String } * */ public String getServerType() { if (serverType == null) { return "gf"; } else { return serverType; } } /** * Sets the value of the serverType property. * * @param value * allowed object is * {@link String } * */ public void setServerType(String value) { this.serverType = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy