index
int64
repo_id
string
file_path
string
content
string
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/exceptions/ClientException.java
package com.aliyuncs.v5.exceptions; public class ClientException extends Exception { private static final long serialVersionUID = 534996425110290578L; private String requestId; private String errCode; private String errMsg; private ErrorType errorType; private String errorDescription; ...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/exceptions/ErrorCodeConstant.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/exceptions/ErrorMessageConstant.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/exceptions/ErrorType.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/exceptions/ServerException.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/http/CallBack.java
package com.aliyuncs.v5.http; /** * 用于异步调用时的回调逻辑 * * @author VK.Gao * @date 2017/03/02 */ public interface CallBack { /** * 请求失败 * * @param request 封装后的请求对象,包含部分http相关信息 * @param e 导致失败的异常 */ void onFailure(HttpRequest request, Exception e); /** * 收到应答 * ...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/http/CompositeX509TrustManager.java
package com.aliyuncs.v5.http; import javax.net.ssl.X509TrustManager; import java.security.cert.CertificateException; import java.security.cert.X509Certificate; import java.util.ArrayList; import java.util.Arrays; import java.util.List; public class CompositeX509TrustManager implements X509TrustManager { private...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/http/FormatType.java
package com.aliyuncs.v5.http; import java.util.Arrays; public enum FormatType { /** * XML("application/xml","text/xml") * JSON:("application/json", "text/json") * RAW:("application/octet-stream") * FORM:("application/x-www-form-urlencoded") */ XML("application/xml", "text/xml"), ...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/http/HttpClientConfig.java
package com.aliyuncs.v5.http; import javax.net.ssl.HostnameVerifier; import javax.net.ssl.KeyManager; import javax.net.ssl.SSLSocketFactory; import javax.net.ssl.X509TrustManager; import java.security.SecureRandom; import java.util.HashMap; import java.util.Map; import java.util.concurrent.ExecutorService; public cla...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/http/HttpClientFactory.java
package com.aliyuncs.v5.http; import com.aliyuncs.v5.http.clients.ApacheHttpClient; import com.aliyuncs.v5.http.clients.CompatibleUrlConnClient; import com.aliyuncs.v5.profile.IClientProfile; import com.aliyuncs.v5.utils.StringUtils; import java.lang.reflect.Constructor; public class HttpClientFactory { public ...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/http/HttpClientType.java
package com.aliyuncs.v5.http; public enum HttpClientType { /** * define Compatiblen,HttpClient,okHttp,Custom */ Compatible(com.aliyuncs.v5.http.clients.CompatibleUrlConnClient.class), ApacheHttpClient(com.aliyuncs.v5.http.clients.ApacheHttpClient.class), OkHttp(null), Custom(null), ;...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/http/HttpMessage.java
package com.aliyuncs.v5.http; import com.aliyuncs.v5.exceptions.ClientException; import com.aliyuncs.v5.utils.ParameterHelper; import lombok.ToString; import javax.net.ssl.KeyManager; import javax.net.ssl.X509TrustManager; import java.io.UnsupportedEncodingException; import java.util.Collections; import java.util.Has...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/http/HttpRequest.java
package com.aliyuncs.v5.http; import lombok.ToString; import java.util.Map; @ToString(callSuper = true) public class HttpRequest extends HttpMessage { public HttpRequest(String strUrl) { super(strUrl); } public HttpRequest(String strUrl, Map<String, String> tmpHeaders) { super(strUrl); ...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/http/HttpResponse.java
package com.aliyuncs.v5.http; import lombok.ToString; @ToString(callSuper = true) public class HttpResponse extends HttpMessage { private int status; private String reasonPhrase; public HttpResponse(String strUrl) { super(strUrl); } public HttpResponse() { } @Override publ...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/http/HttpUtil.java
package com.aliyuncs.v5.http; import java.io.IOException; import java.net.InetSocketAddress; import java.net.MalformedURLException; import java.net.Proxy; import java.net.SocketAddress; import java.net.URL; import java.util.Map; import java.util.Map.Entry; import javax.xml.bind.DatatypeConverter; import org.apache.c...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/http/IHttpClient.java
package com.aliyuncs.v5.http; import com.aliyuncs.v5.exceptions.ClientException; import java.io.Closeable; import java.io.IOException; import java.util.concurrent.Future; public abstract class IHttpClient implements Closeable { protected HttpClientConfig clientConfig; public IHttpClient(HttpClientConfig cl...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/http/MethodType.java
package com.aliyuncs.v5.http; public enum MethodType { /** * GET * PUT * POST * DELETE */ GET(false), PUT(true), POST(true), DELETE(false), HEAD(false), OPTIONS(false); private boolean hasContent; MethodType(boolean hasContent) { this.hasContent = ...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/http/ProtocolType.java
package com.aliyuncs.v5.http; public enum ProtocolType { /** * Define HTTP、HTTPS */ HTTP("http"), HTTPS("https"); private final String protocol; ProtocolType(String protocol) { this.protocol = protocol; } @Override public String toString() { return pro...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/http/UserAgentConfig.java
package com.aliyuncs.v5.http; import com.aliyuncs.v5.CoreMessage; import com.aliyuncs.v5.utils.StringUtils; import java.util.*; public class UserAgentConfig { static { Properties sysProps = System.getProperties(); DEFAULT_MESSAGE = String.format("AlibabaCloud (%s; %s) Java/%s %s/%s", sysProps.ge...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/http/X509TrustAll.java
package com.aliyuncs.v5.http; import com.aliyuncs.v5.IAcsClient; @Deprecated public final class X509TrustAll { public static boolean ignoreSSLCerts = false; @Deprecated public static void restoreSSLCertificate() { ignoreSSLCerts = false; } @Deprecated public static void ignoreSSLCer...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/http
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/http/clients/ApacheHttpClient.java
package com.aliyuncs.v5.http.clients; import com.aliyuncs.v5.exceptions.ClientException; import com.aliyuncs.v5.http.*; import com.aliyuncs.v5.utils.EnvironmentUtils; import com.aliyuncs.v5.utils.IOUtils; import com.aliyuncs.v5.utils.StringUtils; import org.apache.http.Header; import org.apache.http.HttpHost; import o...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/http
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/http/clients/ApacheIdleConnectionCleaner.java
package com.aliyuncs.v5.http.clients; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import org.apache.http.conn.HttpClientConnectionManager; import java.util.Map; import java.util.Map.Entry; import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.TimeUnit; pu...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/http
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/http/clients/CompatibleUrlConnClient.java
package com.aliyuncs.v5.http.clients; import com.aliyuncs.v5.exceptions.ClientException; import com.aliyuncs.v5.http.*; import com.aliyuncs.v5.utils.EnvironmentUtils; import org.apache.http.conn.ssl.DefaultHostnameVerifier; import org.apache.http.conn.ssl.NoopHostnameVerifier; import javax.net.ssl.*; import java.io.B...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/profile/DefaultProfile.java
package com.aliyuncs.v5.profile; import com.aliyuncs.v5.auth.*; import com.aliyuncs.v5.endpoint.DefaultEndpointResolver; import com.aliyuncs.v5.exceptions.ClientException; import com.aliyuncs.v5.http.FormatType; import com.aliyuncs.v5.http.HttpClientConfig; import org.slf4j.Logger; import static com.aliyuncs.v5.utils...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/profile/IClientProfile.java
package com.aliyuncs.v5.profile; import com.aliyuncs.v5.auth.AlibabaCloudCredentialsProvider; import com.aliyuncs.v5.auth.Credential; import com.aliyuncs.v5.auth.ISigner; import com.aliyuncs.v5.http.FormatType; import com.aliyuncs.v5.http.HttpClientConfig; import org.slf4j.Logger; @SuppressWarnings("deprecation") pub...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/reader/JsonReader.java
package com.aliyuncs.v5.reader; import java.text.CharacterIterator; import java.text.StringCharacterIterator; import java.util.HashMap; import java.util.Map; @Deprecated public class JsonReader implements Reader { private static final Object ARRAY_END_TOKEN = new Object(); private static final Object OBJECT_...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/reader/Reader.java
package com.aliyuncs.v5.reader; import com.aliyuncs.v5.exceptions.ClientException; import java.util.Map; @Deprecated public interface Reader { Map<String, String> read(String response, String endpoint) throws ClientException; Map<String, String> readForHideArrayItem(String response, String en...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/reader/ReaderFactory.java
package com.aliyuncs.v5.reader; import com.aliyuncs.v5.http.FormatType; @Deprecated public class ReaderFactory { public static Reader createInstance(FormatType format) { if (FormatType.JSON == format) { return new JsonReader(); } if (FormatType.XML == format) { ret...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/reader/XmlReader.java
package com.aliyuncs.v5.reader; import com.aliyuncs.v5.exceptions.ClientException; import com.aliyuncs.v5.utils.XmlUtils; import org.w3c.dom.Element; import org.xml.sax.SAXException; import javax.xml.parsers.ParserConfigurationException; import java.io.IOException; import java.util.HashMap; import java.util.List; imp...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/regions/ProductDomain.java
package com.aliyuncs.v5.regions; public class ProductDomain { private String productName; private String domainName; public ProductDomain(String product, String domain) { this.productName = product; this.domainName = domain; } public String getProductName() { return produ...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/transform/UnmarshallerContext.java
package com.aliyuncs.v5.transform; import com.aliyuncs.v5.http.HttpResponse; import com.aliyuncs.v5.utils.FlattenMapUtil; import java.util.List; import java.util.Map; public class UnmarshallerContext { private int httpStatus; private Map<String, String> responseMap; private HttpResponse httpResponse; ...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/unmarshaller/JsonUnmashaller.java
package com.aliyuncs.v5.unmarshaller; import com.aliyuncs.v5.AcsResponse; import com.aliyuncs.v5.exceptions.ClientException; import com.google.gson.Gson; import com.google.gson.JsonSyntaxException; public class JsonUnmashaller implements Unmarshaller { @Override public <T extends AcsResponse> T unmarshal(Cla...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/unmarshaller/Unmarshaller.java
package com.aliyuncs.v5.unmarshaller; import com.aliyuncs.v5.AcsResponse; import com.aliyuncs.v5.exceptions.ClientException; public interface Unmarshaller { <T extends AcsResponse> T unmarshal(Class<T> clasz, String content) throws ClientException; }
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/unmarshaller/UnmarshallerFactory.java
package com.aliyuncs.v5.unmarshaller; import com.aliyuncs.v5.http.FormatType; public class UnmarshallerFactory { public static Unmarshaller getUnmarshaller(FormatType format) throws IllegalStateException { switch (format) { case JSON: return new JsonUnmashaller(); ...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/unmarshaller/XmlUnmashaller.java
package com.aliyuncs.v5.unmarshaller; import com.aliyuncs.v5.AcsResponse; import com.aliyuncs.v5.exceptions.ClientException; import javax.xml.bind.JAXBContext; import javax.xml.bind.JAXBException; import java.io.StringReader; public class XmlUnmashaller implements Unmarshaller { @Override public <T extends ...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/utils/AuthUtils.java
package com.aliyuncs.v5.utils; import java.io.File; import java.io.FileInputStream; import java.io.IOException; public class AuthUtils { private static volatile String clientType = System.getenv("ALIBABA_CLOUD_PROFILE"); private static volatile String environmentAccessKeyId; private static volatile Strin...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/utils/Base64Helper.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you ...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/utils/EnvironmentUtils.java
package com.aliyuncs.v5.utils; public class EnvironmentUtils { private static volatile String httpProxy; private static volatile String httpsProxy; private static volatile String noProxy; public static String getHttpProxy() { if (null == httpProxy) { String proxy0 = System.getenv(...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/utils/FlattenMapUtil.java
package com.aliyuncs.v5.utils; import java.util.*; public class FlattenMapUtil { public static List<Map<Object, Object>> toListMap(Map<String, String> flattenMap, String prefix) { MapUtils mapUtils = new MapUtils(); return mapUtils.convertMapToListMap(flattenMap, prefix); } public static ...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/utils/HttpHeadersInjectAdapter.java
package com.aliyuncs.v5.utils; import com.aliyuncs.v5.AcsRequest; import io.opentracing.propagation.TextMap; import java.util.Iterator; import java.util.Map; public class HttpHeadersInjectAdapter implements TextMap { private AcsRequest request ; public HttpHeadersInjectAdapter(AcsRequest request) { ...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/utils/IOUtils.java
package com.aliyuncs.v5.utils; import java.io.Closeable; import java.io.IOException; public class IOUtils { public static void closeQuietly(Closeable closeable) { try { if (closeable != null) { closeable.close(); } } catch (IOException ioe) { //...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/utils/LogUtils.java
package com.aliyuncs.v5.utils; import com.aliyuncs.v5.exceptions.ClientException; import com.aliyuncs.v5.http.HttpRequest; import com.aliyuncs.v5.http.HttpResponse; import lombok.Getter; import lombok.Setter; import java.net.InetAddress; import java.net.MalformedURLException; import java.net.URL; import java.net.Unkn...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/utils/MapUtils.java
package com.aliyuncs.v5.utils; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; public class MapUtils { public List<Map<Object, Object>> convertMapToListMap(Map<String, String> flattenMap, String prefix) { List<Map<Object, Object>> list = new ArrayList<Ma...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/utils/ParameterHelper.java
package com.aliyuncs.v5.utils; import com.google.gson.Gson; import java.io.UnsupportedEncodingException; import java.net.URLEncoder; import java.security.MessageDigest; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.*; public class ParameterHelper { private final static Str...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/utils/StringUtils.java
package com.aliyuncs.v5.utils; public class StringUtils { public static boolean isEmpty(final CharSequence cs) { return cs == null || cs.length() == 0; } }
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/utils/TraceUtils.java
package com.aliyuncs.v5.utils; import io.opentracing.Span; import io.opentracing.tag.Tags; import java.io.PrintWriter; import java.io.StringWriter; import java.util.HashMap; import java.util.Map; public class TraceUtils { public static void onError(Throwable throwable, Span span) { Tags.ERROR.set(span, ...
0
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5
java-sources/com/aliyun/aliyun-java-sdk-core-v5/5.0.2/com/aliyuncs/v5/utils/XmlUtils.java
package com.aliyuncs.v5.utils; import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.Node; import org.w3c.dom.NodeList; import org.xml.sax.InputSource; import org.xml.sax.SAXException; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import javax.xml.par...
0
java-sources/com/aliyun/aliyun-java-sdk-couponnew/1.0.2/com/aliyuncs/couponnew/model
java-sources/com/aliyun/aliyun-java-sdk-couponnew/1.0.2/com/aliyuncs/couponnew/model/v20190401/GetCouponFullTemplatePageRequest.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-couponnew/1.0.2/com/aliyuncs/couponnew/model
java-sources/com/aliyun/aliyun-java-sdk-couponnew/1.0.2/com/aliyuncs/couponnew/model/v20190401/GetCouponFullTemplatePageResponse.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-couponnew/1.0.2/com/aliyuncs/couponnew/model
java-sources/com/aliyun/aliyun-java-sdk-couponnew/1.0.2/com/aliyuncs/couponnew/model/v20190401/GetHasCouponUidListRequest.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-couponnew/1.0.2/com/aliyuncs/couponnew/model
java-sources/com/aliyun/aliyun-java-sdk-couponnew/1.0.2/com/aliyuncs/couponnew/model/v20190401/GetHasCouponUidListResponse.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-couponnew/1.0.2/com/aliyuncs/couponnew/transform
java-sources/com/aliyun/aliyun-java-sdk-couponnew/1.0.2/com/aliyuncs/couponnew/transform/v20190401/GetCouponFullTemplatePageResponseUnmarshaller.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-couponnew/1.0.2/com/aliyuncs/couponnew/transform
java-sources/com/aliyun/aliyun-java-sdk-couponnew/1.0.2/com/aliyuncs/couponnew/transform/v20190401/GetHasCouponUidListResponseUnmarshaller.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/Endpoint.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/CancelRepoBuildRequest.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/CancelRepoBuildResponse.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/CreateNamespaceRequest.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/CreateNamespaceResponse.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/CreateRepoBuildRuleRequest.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/CreateRepoBuildRuleResponse.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/CreateRepoRequest.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/CreateRepoResponse.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/CreateRepoWebhookRequest.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/CreateRepoWebhookResponse.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/CreateUserInfoRequest.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/CreateUserInfoResponse.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/DeleteImageRequest.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/DeleteImageResponse.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/DeleteNamespaceRequest.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/DeleteNamespaceResponse.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/DeleteRepoBuildRuleRequest.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/DeleteRepoBuildRuleResponse.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/DeleteRepoRequest.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/DeleteRepoResponse.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/DeleteRepoWebhookRequest.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/DeleteRepoWebhookResponse.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/GetAuthorizationTokenRequest.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/GetAuthorizationTokenResponse.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/GetImageLayerRequest.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/GetImageLayerResponse.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/GetImageManifestRequest.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/GetImageManifestResponse.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/GetNamespaceListRequest.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/GetNamespaceListResponse.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/GetNamespaceRequest.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/GetNamespaceResponse.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/GetRegionListRequest.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/GetRegionListResponse.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/GetRepoBuildListRequest.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/GetRepoBuildListResponse.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/GetRepoBuildRuleListRequest.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/GetRepoBuildRuleListResponse.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/GetRepoBuildStatusRequest.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/GetRepoBuildStatusResponse.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/GetRepoListByNamespaceRequest.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/GetRepoListByNamespaceResponse.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/GetRepoListRequest.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/GetRepoListResponse.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/GetRepoRequest.java
/* * 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 u...
0
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model
java-sources/com/aliyun/aliyun-java-sdk-cr/4.1.5/com/aliyuncs/cr/model/v20160607/GetRepoResponse.java
/* * 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 u...