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

com.palominolabs.crm.sf.soap.jaxwsstub.metadata.ExternalDataSource Maven / Gradle / Ivy

The newest version!

package com.palominolabs.crm.sf.soap.jaxwsstub.metadata;

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


/**
 * 

Java class for ExternalDataSource complex type. * *

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

 * <complexType name="ExternalDataSource">
 *   <complexContent>
 *     <extension base="{http://soap.sforce.com/2006/04/metadata}Metadata">
 *       <sequence>
 *         <element name="apiKey" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="certificate" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="endpoint" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="label" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="password" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="principalType" type="{http://soap.sforce.com/2006/04/metadata}ExternalPrincipalType"/>
 *         <element name="protocol" type="{http://soap.sforce.com/2006/04/metadata}AuthenticationProtocol"/>
 *         <element name="repository" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="type" type="{http://soap.sforce.com/2006/04/metadata}ExternalDataSourceType"/>
 *         <element name="username" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="version" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ExternalDataSource", propOrder = { "apiKey", "certificate", "endpoint", "label", "password", "principalType", "protocol", "repository", "type", "username", "version" }) public class ExternalDataSource extends Metadata { protected String apiKey; protected String certificate; protected String endpoint; @XmlElement(required = true) protected String label; protected String password; @XmlElement(required = true) protected ExternalPrincipalType principalType; @XmlElement(required = true) protected AuthenticationProtocol protocol; protected String repository; @XmlElement(required = true) protected ExternalDataSourceType type; protected String username; protected String version; /** * Gets the value of the apiKey property. * * @return * possible object is * {@link String } * */ public String getApiKey() { return apiKey; } /** * Sets the value of the apiKey property. * * @param value * allowed object is * {@link String } * */ public void setApiKey(String value) { this.apiKey = value; } /** * Gets the value of the certificate property. * * @return * possible object is * {@link String } * */ public String getCertificate() { return certificate; } /** * Sets the value of the certificate property. * * @param value * allowed object is * {@link String } * */ public void setCertificate(String value) { this.certificate = value; } /** * Gets the value of the endpoint property. * * @return * possible object is * {@link String } * */ public String getEndpoint() { return endpoint; } /** * Sets the value of the endpoint property. * * @param value * allowed object is * {@link String } * */ public void setEndpoint(String value) { this.endpoint = value; } /** * Gets the value of the label property. * * @return * possible object is * {@link String } * */ public String getLabel() { return label; } /** * Sets the value of the label property. * * @param value * allowed object is * {@link String } * */ public void setLabel(String value) { this.label = value; } /** * Gets the value of the password property. * * @return * possible object is * {@link String } * */ public String getPassword() { return password; } /** * Sets the value of the password property. * * @param value * allowed object is * {@link String } * */ public void setPassword(String value) { this.password = value; } /** * Gets the value of the principalType property. * * @return * possible object is * {@link ExternalPrincipalType } * */ public ExternalPrincipalType getPrincipalType() { return principalType; } /** * Sets the value of the principalType property. * * @param value * allowed object is * {@link ExternalPrincipalType } * */ public void setPrincipalType(ExternalPrincipalType value) { this.principalType = value; } /** * Gets the value of the protocol property. * * @return * possible object is * {@link AuthenticationProtocol } * */ public AuthenticationProtocol getProtocol() { return protocol; } /** * Sets the value of the protocol property. * * @param value * allowed object is * {@link AuthenticationProtocol } * */ public void setProtocol(AuthenticationProtocol value) { this.protocol = value; } /** * Gets the value of the repository property. * * @return * possible object is * {@link String } * */ public String getRepository() { return repository; } /** * Sets the value of the repository property. * * @param value * allowed object is * {@link String } * */ public void setRepository(String value) { this.repository = value; } /** * Gets the value of the type property. * * @return * possible object is * {@link ExternalDataSourceType } * */ public ExternalDataSourceType getType() { return type; } /** * Sets the value of the type property. * * @param value * allowed object is * {@link ExternalDataSourceType } * */ public void setType(ExternalDataSourceType value) { this.type = value; } /** * Gets the value of the username property. * * @return * possible object is * {@link String } * */ public String getUsername() { return username; } /** * Sets the value of the username property. * * @param value * allowed object is * {@link String } * */ public void setUsername(String value) { this.username = 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; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy