/*
* Copyright 2017 LinkedIn Corp.
*
* 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 azkaban.spi;
importstatic java.util.Objects.requireNonNull;
import java.util.Objects;
publicclassStorageMetadata{
privatefinalint projectId;
privatefinalint version;
privatefinal String uploader;
privatefinalbyte[] hash;
publicStorageMetadata(finalint projectId, finalint version, final String uploader,
finalbyte[] hash){
this.projectId = projectId;
this.version = version;
this.uploader = requireNonNull(uploader);
this.hash = hash;
}
@Overridepublic String toString(){
return"StorageMetadata{" + "projectId='" + this.projectId + '\'' + ", version='" + this.version
+ '\''
+ '}';
}
publicintgetProjectId(){
returnthis.projectId;
}
publicintgetVersion(){
returnthis.version;
}
public String getUploader(){
returnthis.uploader;
}
publicbyte[] getHash() {
returnthis.hash;
}
@Overridepublicbooleanequals(final Object o){
if (this == o) {
returntrue;
}
if (o == null || getClass() != o.getClass()) {
returnfalse;
}
final StorageMetadata that = (StorageMetadata) o;
return Objects.equals(this.projectId, that.projectId) &&
Objects.equals(this.version, that.version) &&
Objects.equals(this.uploader, that.uploader);
}
@OverridepublicinthashCode(){
return Objects.hash(this.projectId, this.version, this.uploader);
}
}