
org.jclouds.azureblob.domain.internal.MutableBlobPropertiesImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jclouds-shaded Show documentation
Show all versions of jclouds-shaded Show documentation
Provides a shaded jclouds with relocated guava and guice
The newest version!
/*
* 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 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.jclouds.azureblob.domain.internal;
import static shaded.com.google.common.base.Preconditions.checkNotNull;
import java.net.URI;
import java.util.Date;
import java.util.Map;
import org.jclouds.azureblob.domain.AccessTier;
import org.jclouds.azureblob.domain.BlobProperties;
import org.jclouds.azureblob.domain.BlobType;
import org.jclouds.azureblob.domain.LeaseStatus;
import org.jclouds.azureblob.domain.MutableBlobProperties;
import org.jclouds.http.HttpUtils;
import org.jclouds.io.MutableContentMetadata;
import org.jclouds.io.payloads.BaseMutableContentMetadata;
import shaded.com.google.common.collect.Maps;
/**
* Allows you to manipulate metadata.
*/
public class MutableBlobPropertiesImpl implements MutableBlobProperties {
private BlobType type = BlobType.BLOCK_BLOB;
private AccessTier tier;
private LeaseStatus leaseStatus = LeaseStatus.UNLOCKED;
private String name;
private String container;
private URI url;
private Date lastModified;
private String eTag;
private MutableContentMetadata contentMetadata;
private Map metadata = Maps.newHashMap();
public MutableBlobPropertiesImpl() {
super();
this.contentMetadata = new BaseMutableContentMetadata();
}
public MutableBlobPropertiesImpl(BlobProperties from) {
this.contentMetadata = new BaseMutableContentMetadata();
this.name = from.getName();
this.container = from.getContainer();
this.url = from.getUrl();
this.lastModified = from.getLastModified();
this.eTag = from.getETag();
this.metadata.putAll(from.getMetadata());
HttpUtils.copy(from.getContentMetadata(), this.contentMetadata);
}
/**
*{@inheritDoc}
*/
@Override
public BlobType getType() {
return type;
}
/**
* Set the blob type.
*/
public void setType(BlobType type) {
this.type = type;
}
@Override
public AccessTier getTier() {
return tier;
}
@Override
public void setTier(AccessTier tier) {
this.tier = checkNotNull(tier);
}
/**
*{@inheritDoc}
*/
@Override
public String getName() {
return name;
}
/**
*{@inheritDoc}
*/
@Override
public Date getLastModified() {
return lastModified;
}
/**
*{@inheritDoc}
*/
@Override
public String getETag() {
return eTag;
}
/**
*{@inheritDoc}
*/
@Override
public int compareTo(BlobProperties o) {
return (this == o) ? 0 : getName().compareTo(o.getName());
}
/**
*{@inheritDoc}
*/
@Override
public Map getMetadata() {
return metadata;
}
/**
*{@inheritDoc}
*/
@Override
public LeaseStatus getLeaseStatus() {
return leaseStatus;
}
/**
*{@inheritDoc}
*/
@Override
public void setETag(String eTag) {
this.eTag = eTag;
}
/**
*{@inheritDoc}
*/
@Override
public void setName(String name) {
this.name = name;
}
/**
*{@inheritDoc}
*/
@Override
public void setLastModified(Date lastModified) {
this.lastModified = lastModified;
}
/**
*{@inheritDoc}
*/
@Override
public void setMetadata(Map metadata) {
this.metadata = metadata;
}
public void setUrl(URI url) {
this.url = url;
}
public URI getUrl() {
return url;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((url == null) ? 0 : url.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (getClass() != obj.getClass())
return false;
MutableBlobPropertiesImpl other = (MutableBlobPropertiesImpl) obj;
if (url == null) {
if (other.url != null)
return false;
} else if (!url.equals(other.url))
return false;
return true;
}
@Override
public String toString() {
return String
.format(
"[name=%s, container=%s, url=%s, contentMetadata=%s, eTag=%s, lastModified=%s, leaseStatus=%s, metadata=%s, type=%s]",
name, container, url, contentMetadata, eTag, lastModified, leaseStatus, metadata, type);
}
/**
* {@inheritDoc}
*/
@Override
public MutableContentMetadata getContentMetadata() {
return contentMetadata;
}
/**
* {@inheritDoc}
*/
@Override
public void setContentMetadata(MutableContentMetadata contentMetadata) {
this.contentMetadata = contentMetadata;
}
/**
*{@inheritDoc}
*/
@Override
public String getContainer() {
return container;
}
/**
*{@inheritDoc}
*/
@Override
public void setContainer(String container) {
this.container = container;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy