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

com.labs64.netlicensing.schema.context.Info Maven / Gradle / Ivy

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


package com.labs64.netlicensing.schema.context;

import java.io.Serializable;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.XmlValue;


/**
 * Info element delivers all service messages to the caller
 * 
 * 

Java class for info complex type

. * *

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

* *
{@code
 * 
 *   
 *     
 *       
 *       
 *     
 *   
 * 
 * }
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "info", propOrder = { "value" }) public class Info implements Serializable { private static final long serialVersionUID = 1L; @XmlValue protected String value; /** * Info element unique identifier (can be info or error code) * */ @XmlAttribute(name = "id") protected String id; /** * Info element type (error, warning, info) * */ @XmlAttribute(name = "type") protected InfoEnum type; /** * Default no-arg constructor * */ public Info() { super(); } /** * Fully-initialising value constructor * */ public Info(final String value, final String id, final InfoEnum type) { this.value = value; this.id = id; this.type = type; } /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Info element unique identifier (can be info or error code) * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * * @see #getId() */ public void setId(String value) { this.id = value; } /** * Info element type (error, warning, info) * * @return * possible object is * {@link InfoEnum } * */ public InfoEnum getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link InfoEnum } * * @see #getType() */ public void setType(InfoEnum value) { this.type = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy