Java tutorial
/* * Copyright 2016 OICR * * 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 io.dockstore.webservice.core; import com.fasterxml.jackson.annotation.JsonProperty; import com.google.common.collect.ComparisonChain; import com.google.common.collect.Ordering; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import javax.persistence.Column; import javax.persistence.Entity; import java.util.Objects; /** * This implements version for a Workflow. * * @author dyuen */ @ApiModel(value = "WorkflowVersion", description = "This describes one workflow version associated with a workflow.") @Entity public class WorkflowVersion extends Version<WorkflowVersion> implements Comparable<WorkflowVersion> { @Column(columnDefinition = "text", nullable = false) @JsonProperty("workflow_path") @ApiModelProperty("Path for the workflow") private String workflowPath; public WorkflowVersion() { super(); } public void updateByUser(final WorkflowVersion workflowVersion) { super.updateByUser(workflowVersion); workflowPath = workflowVersion.workflowPath; } public void update(WorkflowVersion workflowVersion) { super.update(workflowVersion); super.setReference(workflowVersion.getReference()); } public void clone(WorkflowVersion tag) { super.clone(tag); super.setReference(tag.getReference()); } @JsonProperty public String getWorkflowPath() { return workflowPath; } public void setWorkflowPath(String workflowPath) { this.workflowPath = workflowPath; } @Override public int hashCode() { return 31 * super.hashCode() + Objects.hash(workflowPath); } @Override public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null || getClass() != obj.getClass()) { return false; } if (!super.equals(obj)) { return false; } final WorkflowVersion other = (WorkflowVersion) obj; return Objects.equals(this.workflowPath, other.workflowPath); } @Override public int compareTo(WorkflowVersion that) { if (super.compareTo(that) < 0) { return -1; } else if (super.compareTo(that) > 0) { return 1; } return ComparisonChain.start().compare(this.workflowPath, that.workflowPath, Ordering.natural().nullsLast()) .result(); } }