ProjectDirectoryMetadata.java

88 lines | 2.16 kB Blame History Raw Download
/*
 * Copyright 2012 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.execapp;

import static com.google.common.base.Preconditions.checkArgument;

import java.io.File;
import java.nio.file.attribute.FileTime;


class ProjectDirectoryMetadata {
  private final int projectId;
  private final int version;
  private File installedDir;
  private Long dirSizeInByte;
  private FileTime lastAccessTime;

  ProjectDirectoryMetadata(final int projectId, final int version) {
    checkArgument(projectId > 0);
    checkArgument(version > 0);

    this.projectId = projectId;
    this.version = version;
  }

  ProjectDirectoryMetadata(final int projectId, final int version, final File installedDir) {
    this(projectId, version);
    this.installedDir = installedDir;
  }

  Long getDirSizeInByte() {
    return this.dirSizeInByte;
  }

  void setDirSizeInByte(final Long dirSize) {
    this.dirSizeInByte = dirSize;
  }

  int getProjectId() {
    return this.projectId;
  }

  int getVersion() {
    return this.version;
  }

  File getInstalledDir() {
    return this.installedDir;
  }

  void setInstalledDir(final File installedDir) {
    this.installedDir = installedDir;
  }

  @Override
  public String toString() {
    return "ProjectVersion{" +
        "projectId=" + this.projectId +
        ", version=" + this.version +
        ", installedDir=" + this.installedDir +
        ", dirSizeInByte=" + this.dirSizeInByte +
        ", lastAccessTime=" + this.lastAccessTime +
        '}';
  }

  FileTime getLastAccessTime() {
    return this.lastAccessTime;
  }

  void setLastAccessTime(final FileTime lastAccessTime) {
    this.lastAccessTime = lastAccessTime;
  }
}