/* * Copyright 2012 the original author or authors. * * 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 org.gradle.internal.resource.metadata; import org.gradle.api.Nullable; import org.gradle.internal.hash.HashValue; import java.io.Serializable; import java.net.URI; import java.util.Date; public class DefaultExternalResourceMetaData implements ExternalResourceMetaData, Serializable { private final URI location; private final Date lastModified; private final long contentLength; private final String etag; private final String sha1; private final String contentType; public DefaultExternalResourceMetaData(URI location, long lastModified, long contentLength) { this(location, lastModified > 0 ? new Date(lastModified) : null, contentLength, null, null, null); } public DefaultExternalResourceMetaData(URI location, long lastModified, long contentLength, @Nullable String contentType, @Nullable String etag, @Nullable HashValue sha1) { this(location, lastModified > 0 ? new Date(lastModified) : null, contentLength, contentType, etag, sha1); } public DefaultExternalResourceMetaData(URI location, @Nullable Date lastModified, long contentLength, @Nullable String contentType, @Nullable String etag, @Nullable HashValue sha1) { this.location = location; this.lastModified = lastModified; this.contentLength = contentLength; this.contentType = contentType; this.etag = etag; this.sha1 = sha1 == null ? null : sha1.asHexString(); } public URI getLocation() { return location; } @Nullable public Date getLastModified() { return lastModified; } public long getContentLength() { return contentLength; } @Nullable @Override public String getContentType() { return contentType; } @Nullable public String getEtag() { return etag; } public HashValue getSha1() { return sha1 == null ? null : HashValue.parse(sha1); } }