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

org.uddi.api_v3.GetPublisherAssertions Maven / Gradle / Ivy

There is a newer version: 1.1
Show newest version

package org.uddi.api_v3;

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


/**
 * 

Java class for get_publisherAssertions complex type. * *

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

 * <complexType name="get_publisherAssertions">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{urn:uddi-org:api_v3}authInfo" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "get_publisherAssertions", propOrder = { "authInfo" }) public class GetPublisherAssertions { protected String authInfo; /** * Gets the value of the authInfo property. * * @return * possible object is * {@link String } * */ public String getAuthInfo() { return authInfo; } /** * Sets the value of the authInfo property. * * @param value * allowed object is * {@link String } * */ public void setAuthInfo(String value) { this.authInfo = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy