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

org.apache.syncope.common.lib.to.AbstractAnnotatedBean Maven / Gradle / Ivy

/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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.apache.syncope.common.lib.to;

import com.fasterxml.jackson.annotation.JsonIgnore;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.Date;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import org.apache.commons.lang3.StringUtils;
import org.apache.commons.lang3.builder.EqualsBuilder;
import org.apache.commons.lang3.builder.HashCodeBuilder;
import org.apache.syncope.common.lib.BaseBean;

/**
 * Abstract wrapper for common system information.
 */
@XmlType
@XmlSeeAlso(AnyTO.class)
public abstract class AbstractAnnotatedBean extends BaseBean implements EntityTO {

    private static final long serialVersionUID = -930797879027642457L;

    /**
     * Username of the user that has created this profile.
     * 

* Cannot be used a reference to an existing user for two main reasons: the creator can be the user admin; * the creator could have been removed. */ private String creator; /** * Creation date. */ private Date creationDate; /** * Username of the user that has performed the last modification to this profile. *

* This field cannot be null: at creation time it have to be initialized with the creator username. *

* The modifier can be the user itself whether the last performed change has been a self-modification. *

* Cannot be used a reference to an existing user for two main reasons: the modifier can be the user admin; * the modifier could have been removed. */ private String lastModifier; /** * Last change date. *

* This field cannot be null: at creation time it has to be initialized with creationDate field value. */ private Date lastChangeDate; @Schema(accessMode = Schema.AccessMode.READ_ONLY) public String getCreator() { return creator; } public void setCreator(final String creator) { this.creator = creator; } @Schema(accessMode = Schema.AccessMode.READ_ONLY) public Date getCreationDate() { if (creationDate != null) { return new Date(creationDate.getTime()); } return null; } public void setCreationDate(final Date creationDate) { if (creationDate != null) { this.creationDate = new Date(creationDate.getTime()); } else { this.creationDate = null; } } @Schema(accessMode = Schema.AccessMode.READ_ONLY) public String getLastModifier() { return lastModifier; } public void setLastModifier(final String lastModifier) { this.lastModifier = lastModifier; } @Schema(accessMode = Schema.AccessMode.READ_ONLY) public Date getLastChangeDate() { if (lastChangeDate != null) { return new Date(lastChangeDate.getTime()); } return null; } public void setLastChangeDate(final Date lastChangeDate) { if (lastChangeDate != null) { this.lastChangeDate = new Date(lastChangeDate.getTime()); } else { this.lastChangeDate = null; } } @JsonIgnore public String getETagValue() { Date etagDate = getLastChangeDate() == null ? getCreationDate() : getLastChangeDate(); return etagDate == null ? StringUtils.EMPTY : String.valueOf(etagDate.getTime()); } @Override public int hashCode() { return new HashCodeBuilder(). append(creator). append(creationDate). append(lastModifier). append(lastChangeDate). build(); } @Override public boolean equals(final Object obj) { if (this == obj) { return true; } if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } final AbstractAnnotatedBean other = (AbstractAnnotatedBean) obj; return new EqualsBuilder(). append(creator, other.creator). append(creationDate, other.creationDate). append(lastModifier, other.lastModifier). append(lastChangeDate, other.lastChangeDate). build(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy