com.sap.psr.vulas.cia.model.nexus.NexusDescribeInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-lib-utils Show documentation
Show all versions of rest-lib-utils Show documentation
Provides RESTful APIs to discover, analyze and difference Maven artifacts, Java archives
as well as Java source and byte code.
/**
* This file is part of Eclipse Steady.
*
* 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.
*
* SPDX-License-Identifier: Apache-2.0
*
* Copyright (c) 2018 SAP SE or an SAP affiliate company. All rights reserved.
*/
package com.sap.psr.vulas.cia.model.nexus;
/**
* NexusDescribeInfo class.
*
*/
public class NexusDescribeInfo {
Long uploaded;
Long lastChanged;
String sha1Hash;
/**
* Getter for the field uploaded
.
*
* @return a {@link java.lang.Long} object.
*/
public Long getUploaded() {
return uploaded;
}
/**
* Setter for the field uploaded
.
*
* @param uploaded a {@link java.lang.Long} object.
*/
public void setUploaded(Long uploaded) {
this.uploaded = uploaded;
}
/**
* Getter for the field lastChanged
.
*
* @return a {@link java.lang.Long} object.
*/
public Long getLastChanged() {
return lastChanged;
}
/**
* Setter for the field lastChanged
.
*
* @param lastChanged a {@link java.lang.Long} object.
*/
public void setLastChanged(Long lastChanged) {
this.lastChanged = lastChanged;
}
/**
* Getter for the field sha1Hash
.
*
* @return a {@link java.lang.String} object.
*/
public String getSha1Hash() {
return sha1Hash;
}
/**
* Setter for the field sha1Hash
.
*
* @param sha1Hash a {@link java.lang.String} object.
*/
public void setSha1Hash(String sha1Hash) {
this.sha1Hash = sha1Hash;
}
}