![JAR search and dependency download from the Maven repository](/logo.png)
com.tencentcloudapi.tcmpp.v20240801.models.GlobalDomainCheckResp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Show all versions of tencentcloud-sdk-java-intl-en Show documentation
Tencent Cloud API SDK for Java
/*
* Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.tencentcloudapi.tcmpp.v20240801.models;
import com.tencentcloudapi.common.AbstractModel;
import com.tencentcloudapi.common.SSEResponseModel;
import com.google.gson.annotations.SerializedName;
import com.google.gson.annotations.Expose;
import java.util.HashMap;
public class GlobalDomainCheckResp extends AbstractModel {
/**
* List of duplicate domain names
Note: This field may return null, indicating that no valid values can be obtained.
*/
@SerializedName("RepeatUrls")
@Expose
private String [] RepeatUrls;
/**
* List of allowed domain names
Note: This field may return null, indicating that no valid values can be obtained.
*/
@SerializedName("ExistsWhiteUrls")
@Expose
private String [] ExistsWhiteUrls;
/**
* List of blocked domain names
Note: This field may return null, indicating that no valid values can be obtained.
*/
@SerializedName("ExistsBlackUrls")
@Expose
private String [] ExistsBlackUrls;
/**
* Get List of duplicate domain names
Note: This field may return null, indicating that no valid values can be obtained.
* @return RepeatUrls List of duplicate domain names
Note: This field may return null, indicating that no valid values can be obtained.
*/
public String [] getRepeatUrls() {
return this.RepeatUrls;
}
/**
* Set List of duplicate domain names
Note: This field may return null, indicating that no valid values can be obtained.
* @param RepeatUrls List of duplicate domain names
Note: This field may return null, indicating that no valid values can be obtained.
*/
public void setRepeatUrls(String [] RepeatUrls) {
this.RepeatUrls = RepeatUrls;
}
/**
* Get List of allowed domain names
Note: This field may return null, indicating that no valid values can be obtained.
* @return ExistsWhiteUrls List of allowed domain names
Note: This field may return null, indicating that no valid values can be obtained.
*/
public String [] getExistsWhiteUrls() {
return this.ExistsWhiteUrls;
}
/**
* Set List of allowed domain names
Note: This field may return null, indicating that no valid values can be obtained.
* @param ExistsWhiteUrls List of allowed domain names
Note: This field may return null, indicating that no valid values can be obtained.
*/
public void setExistsWhiteUrls(String [] ExistsWhiteUrls) {
this.ExistsWhiteUrls = ExistsWhiteUrls;
}
/**
* Get List of blocked domain names
Note: This field may return null, indicating that no valid values can be obtained.
* @return ExistsBlackUrls List of blocked domain names
Note: This field may return null, indicating that no valid values can be obtained.
*/
public String [] getExistsBlackUrls() {
return this.ExistsBlackUrls;
}
/**
* Set List of blocked domain names
Note: This field may return null, indicating that no valid values can be obtained.
* @param ExistsBlackUrls List of blocked domain names
Note: This field may return null, indicating that no valid values can be obtained.
*/
public void setExistsBlackUrls(String [] ExistsBlackUrls) {
this.ExistsBlackUrls = ExistsBlackUrls;
}
public GlobalDomainCheckResp() {
}
/**
* NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
* and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
*/
public GlobalDomainCheckResp(GlobalDomainCheckResp source) {
if (source.RepeatUrls != null) {
this.RepeatUrls = new String[source.RepeatUrls.length];
for (int i = 0; i < source.RepeatUrls.length; i++) {
this.RepeatUrls[i] = new String(source.RepeatUrls[i]);
}
}
if (source.ExistsWhiteUrls != null) {
this.ExistsWhiteUrls = new String[source.ExistsWhiteUrls.length];
for (int i = 0; i < source.ExistsWhiteUrls.length; i++) {
this.ExistsWhiteUrls[i] = new String(source.ExistsWhiteUrls[i]);
}
}
if (source.ExistsBlackUrls != null) {
this.ExistsBlackUrls = new String[source.ExistsBlackUrls.length];
for (int i = 0; i < source.ExistsBlackUrls.length; i++) {
this.ExistsBlackUrls[i] = new String(source.ExistsBlackUrls[i]);
}
}
}
/**
* Internal implementation, normal users should not use it.
*/
public void toMap(HashMap map, String prefix) {
this.setParamArraySimple(map, prefix + "RepeatUrls.", this.RepeatUrls);
this.setParamArraySimple(map, prefix + "ExistsWhiteUrls.", this.ExistsWhiteUrls);
this.setParamArraySimple(map, prefix + "ExistsBlackUrls.", this.ExistsBlackUrls);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy