All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.commonjava.indy.folo.dto.TrackedContentDTO Maven / Gradle / Ivy

There is a newer version: 3.2.3
Show newest version
/**
 * Copyright (C) 2011-2023 Red Hat, Inc. (https://github.com/Commonjava/indy)
 *
 * 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.commonjava.indy.folo.dto;

import java.util.Set;

import io.swagger.annotations.ApiModelProperty;
import org.commonjava.indy.folo.model.TrackingKey;

public class TrackedContentDTO
{

    @ApiModelProperty( "Session key (specified by the user) to track this record." )
    private TrackingKey key;

    private Set uploads;

    private Set downloads;

    public TrackedContentDTO()
    {
    }

    public TrackedContentDTO( final TrackingKey key, final Set uploads,
                              final Set downloads )
    {
        this.key = key;
        this.uploads = uploads;
        this.downloads = downloads;
    }

    public TrackingKey getKey()
    {
        return key;
    }

    public void setKey( final TrackingKey key )
    {
        this.key = key;
    }

    public Set getUploads()
    {
        return uploads;
    }

    public void setUploads( final Set uploads )
    {
        this.uploads = uploads;
    }

    public Set getDownloads()
    {
        return downloads;
    }

    public void setDownloads( final Set downloads )
    {
        this.downloads = downloads;
    }

    @Override
    public boolean equals( Object o )
    {
        if ( this == o )
        {
            return true;
        }
        if ( !( o instanceof TrackedContentDTO ) )
        {
            return false;
        }

        TrackedContentDTO that = (TrackedContentDTO) o;

        return getKey() != null ? getKey().equals( that.getKey() ) : that.getKey() == null;

    }

    @Override
    public int hashCode()
    {
        return getKey() != null ? getKey().hashCode() : 0;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy