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

com.google.api.ads.dfp.jaxws.v201511.InvalidUrlErrorReason Maven / Gradle / Ivy

There is a newer version: 5.8.0
Show newest version

package com.google.api.ads.dfp.jaxws.v201511;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for InvalidUrlError.Reason. * *

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

*

 * <simpleType name="InvalidUrlError.Reason">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="ILLEGAL_CHARACTERS"/>
 *     <enumeration value="INVALID_FORMAT"/>
 *     <enumeration value="INSECURE_SCHEME"/>
 *     <enumeration value="NO_SCHEME"/>
 *     <enumeration value="UNKNOWN"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "InvalidUrlError.Reason") @XmlEnum public enum InvalidUrlErrorReason { /** * * The URL contains invalid characters. * * */ ILLEGAL_CHARACTERS, /** * * The format of the URL is not allowed. This could occur for a number of * reasons. For example, if an invalid scheme is specified (like "ftp://") * or if a port is specified when not required, or if a query was specified * when not required. * * */ INVALID_FORMAT, /** * * URL contains insecure scheme. * * */ INSECURE_SCHEME, /** * * The URL does not contain a scheme. * * */ NO_SCHEME, /** * * The value returned if the actual value is not exposed by the requested API version. * * */ UNKNOWN; public String value() { return name(); } public static InvalidUrlErrorReason fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy