
org.jclouds.aws.s3.domain.internal.S3ObjectImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jclouds-aws Show documentation
Show all versions of jclouds-aws Show documentation
jclouds Core components to access Amazon AWS
The newest version!
/**
*
* Copyright (C) 2010 Cloud Conscious, LLC.
*
* ====================================================================
* 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.jclouds.aws.s3.domain.internal;
import static com.google.common.base.Preconditions.checkNotNull;
import javax.inject.Inject;
import org.jclouds.aws.s3.domain.AccessControlList;
import org.jclouds.aws.s3.domain.MutableObjectMetadata;
import org.jclouds.aws.s3.domain.S3Object;
import org.jclouds.http.internal.PayloadEnclosingImpl;
import org.jclouds.io.Payload;
import com.google.common.collect.LinkedHashMultimap;
import com.google.common.collect.Multimap;
/**
* Default Implementation of {@link S3Object}.
*
* @author Adrian Cole
*/
public class S3ObjectImpl extends PayloadEnclosingImpl implements S3Object, Comparable {
private AccessControlList accessControlList;
/**
* {@inheritDoc}
*/
@Override
public void setAccessControlList(AccessControlList acl) {
this.accessControlList = acl;
}
/**
* {@inheritDoc}
*/
@Override
public AccessControlList getAccessControlList() {
return this.accessControlList;
}
private final MutableObjectMetadata metadata;
private Multimap allHeaders = LinkedHashMultimap.create();
@Inject
public S3ObjectImpl(MutableObjectMetadata metadata) {
super();
this.metadata = metadata;
}
/**
* {@inheritDoc}
*/
@Override
public MutableObjectMetadata getMetadata() {
return metadata;
}
/**
* {@inheritDoc}
*/
@Override
public Multimap getAllHeaders() {
return allHeaders;
}
/**
* {@inheritDoc}
*/
@Override
public void setAllHeaders(Multimap allHeaders) {
this.allHeaders = checkNotNull(allHeaders, "allHeaders");
}
/**
* {@inheritDoc}
*/
@Override
public int compareTo(S3Object o) {
if (getMetadata().getKey() == null)
return -1;
return (this == o) ? 0 : getMetadata().getKey().compareTo(o.getMetadata().getKey());
}
@Override
public int hashCode() {
final int prime = 31;
int result = super.hashCode();
result = prime * result + ((metadata == null) ? 0 : metadata.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (!super.equals(obj))
return false;
if (getClass() != obj.getClass())
return false;
S3ObjectImpl other = (S3ObjectImpl) obj;
if (metadata == null) {
if (other.metadata != null)
return false;
} else if (!metadata.equals(other.metadata))
return false;
return true;
}
@Override
public String toString() {
return "[metadata=" + metadata + "]";
}
@Override
public void setPayload(Payload data) {
super.setPayload(data);
metadata.setContentMetadata(data.getContentMetadata());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy