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

com.liberologico.cloudesire.cmw.model.dto.EndpointDTO Maven / Gradle / Ivy

The newest version!
package com.liberologico.cloudesire.cmw.model.dto;

import com.liberologico.cloudesire.cmw.model.enums.EndpointType;
import org.hibernate.validator.constraints.URL;

import javax.validation.constraints.Size;
import java.util.Objects;

import static com.liberologico.cloudesire.cmw.model.utils.ConstraintKeys.INVALID_SIZE;

public class EndpointDTO extends BaseEntityDTO
{
    @URL
    private String endpoint;

    private EndpointType category;

    @Size( max = 1024, message = INVALID_SIZE )
    private String description;

    public EndpointDTO( String endpoint, String description )
    {
        this( endpoint );
        this.description = description;
    }

    public EndpointDTO( String endpoint )
    {
        this.endpoint = endpoint;
    }

    public EndpointDTO()
    {
    }

    @Deprecated
    public String getName()
    {
        return getEndpoint();
    }

    @Deprecated
    public EndpointDTO setName( String name )
    {
        return setEndpoint( name );
    }

    public String getEndpoint()
    {
        return endpoint;
    }

    public EndpointDTO setEndpoint( String endpoint )
    {
        this.endpoint = endpoint;
        return this;
    }

    public EndpointType getCategory()
    {
        return category;
    }

    public EndpointDTO setCategory( EndpointType category )
    {
        this.category = category;
        return this;
    }

    public String getDescription()
    {
        return description;
    }

    public EndpointDTO setDescription( String description )
    {
        this.description = description;
        return this;
    }

    @Override
    public boolean equals( Object o )
    {
        if ( this == o ) return true;
        if ( o == null || getClass() != o.getClass() ) return false;
        EndpointDTO that = (EndpointDTO) o;
        return Objects.equals( endpoint, that.endpoint );
    }

    @Override
    public int hashCode()
    {
        return Objects.hash( endpoint );
    }

    @Override
    public String toString()
    {
        return endpoint + " [" + category +  "] (" + description + ")";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy