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

org.xmlsoap.schemas.wsdl.TImport Maven / Gradle / Ivy

The newest version!
//
// Este archivo ha sido generado por la arquitectura JavaTM para la implantación de la referencia de enlace (JAXB) XML v2.2.5-2 
// Visite http://java.sun.com/xml/jaxb 
// Todas las modificaciones realizadas en este archivo se perderán si se vuelve a compilar el esquema de origen. 
// Generado el: PM.02.21 a las 09:44:00 PM CET 
//


package org.xmlsoap.schemas.wsdl;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Clase Java para tImport complex type. * *

El siguiente fragmento de esquema especifica el contenido que se espera que haya en esta clase. * *

 * <complexType name="tImport">
 *   <complexContent>
 *     <extension base="{http://schemas.xmlsoap.org/wsdl/}tExtensibleAttributesDocumented">
 *       <attribute name="namespace" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 *       <attribute name="location" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 *       <anyAttribute processContents='lax' namespace='##other'/>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tImport") public class TImport extends TExtensibleAttributesDocumented { @XmlAttribute(name = "namespace", required = true) @XmlSchemaType(name = "anyURI") protected String namespace; @XmlAttribute(name = "location", required = true) @XmlSchemaType(name = "anyURI") protected String location; /** * Obtiene el valor de la propiedad namespace. * * @return * possible object is * {@link String } * */ public String getNamespace() { return namespace; } /** * Define el valor de la propiedad namespace. * * @param value * allowed object is * {@link String } * */ public void setNamespace(String value) { this.namespace = value; } /** * Obtiene el valor de la propiedad location. * * @return * possible object is * {@link String } * */ public String getLocation() { return location; } /** * Define el valor de la propiedad location. * * @param value * allowed object is * {@link String } * */ public void setLocation(String value) { this.location = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy