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

com.github.jinahya.openfire.persistence.OfUserProp Maven / Gradle / Ivy

There is a newer version: 0.1.9
Show newest version
/*
 * Copyright 2017 Jin Kwon <onacit at gmail.com>.
 *
 * 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 com.github.jinahya.openfire.persistence;

import static java.util.Optional.ofNullable;
import javax.json.bind.annotation.JsonbTransient;
import javax.persistence.ConstraintMode;
import javax.persistence.Entity;
import javax.persistence.ForeignKey;
import javax.persistence.Id;
import javax.persistence.IdClass;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.validation.constraints.NotNull;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlTransient;

/**
 * The entity class for {@value #TABLE_NAME} table.
 *
 * @author Jin Kwon <onacit at gmail.com>
 */
@Entity
@IdClass(OfUserPropId.class)
public class OfUserProp extends OfProp {

    private static final long serialVersionUID = -5913174203870238072L;

    // -------------------------------------------------------------------------
    /**
     * The name of the table to which this entity class is bound. The value is
     * {@value #TABLE_NAME}.
     */
    public static final String TABLE_NAME = "ofUserProp";

    // -------------------------------------------------------------------------
    /**
     * The name of the column to which {@value #ATTRIBUTE_NAME_USER} is bound.
     */
    public static final String COLUMN_NAME_USERNAME
            = OfUser.COLUMN_NAME_USERNAME;

    /**
     * The name of the attribute from which {@value #COLUMN_NAME_USERNAME}
     * column is bound.
     */
    public static final String ATTRIBUTE_NAME_USER = "user";

    // -------------------------------------------------------------- idInstance
    /**
     * Return the id instance of this entity instance.
     *
     * @return the id instance
     */
    public OfUserPropId getIdInstance() {
        return new OfUserPropId().user(getUserUsername()).name(getName());
    }

    // -------------------------------------------------------------------- user
    public OfUser getUser() {
        return user;
    }

    public void setUser(final OfUser user) {
        this.user = user;
    }

    public OfUserProp user(final OfUser user) {
        setUser(user);
        return this;
    }

    @XmlAttribute
    public String getUserUsername() {
        return ofNullable(getUser()).map(OfUser::getUsername).orElse(null);
    }

    // -------------------------------------------------------------------------
    @JsonbTransient
    @XmlTransient
    @NotNull
    @Id
    @ManyToOne(optional = false)
//    @PrimaryKeyJoinColumn(
//            foreignKey = @ForeignKey(ConstraintMode.NO_CONSTRAINT),
//            name = COLUMN_NAME_USERNAME,
//            referencedColumnName = OfUser.COLUMN_NAME_USERNAME)
    @JoinColumn(foreignKey = @ForeignKey(ConstraintMode.NO_CONSTRAINT),
                name = COLUMN_NAME_USERNAME,
                nullable = false,
                referencedColumnName = OfUser.COLUMN_NAME_USERNAME,
                updatable = false)
    @NamedAttribute(ATTRIBUTE_NAME_USER)
    private OfUser user;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy