com.github.jinahya.openfire.persistence.OfMucRoomProp Maven / Gradle / Ivy
/*
* 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 com.fasterxml.jackson.annotation.JsonIgnore;
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.XmlTransient;
/**
* The entity for {@value OfMucServiceProp#TABLE_NAME} table.
*
* @author Jin Kwon <onacit at gmail.com>
*/
@Entity
@IdClass(OfMucRoomPropId.class)
public class OfMucRoomProp extends OfProp {
private static final long serialVersionUID = -6469468042118345539L;
// -------------------------------------------------------------------------
public static final String TABLE_NAME = "ofMucRoomProp";
// -------------------------------------------------------------------------
public static final String COLUMN_NAME_ROOM_ID
= OfMucRoom.COLUMN_NAME_ROOM_ID;
public static final String ATTRIBUTE_NAME_ROOM = "room";
// -------------------------------------------------------------------------
/**
* Creates a new instance.
*/
public OfMucRoomProp() {
super();
}
// -------------------------------------------------------------- idInstance
@JsonIgnore
@JsonbTransient
@XmlTransient
public OfMucServicePropId getIdInstance() {
return new OfMucServicePropId()
.service(getRoomRoomId())
.name(getName());
}
// -------------------------------------------------------------------- room
public OfMucRoom getRoom() {
return room;
}
public void setRoom(final OfMucRoom room) {
this.room = room;
}
public OfMucRoomProp room(final OfMucRoom room) {
setRoom(room);
return this;
}
public Long getRoomRoomId() {
return ofNullable(getRoom()).map(OfMucRoom::getRoomId).orElse(null);
}
// -------------------------------------------------------------------------
@JsonIgnore
@JsonbTransient
@XmlTransient
@NotNull
@Id
@ManyToOne(optional = false)
// @PrimaryKeyJoinColumn(
// foreignKey = @ForeignKey(ConstraintMode.NO_CONSTRAINT),
// name = COLUMN_NAME_ROOM_ID,
// referencedColumnName = OfMucRoom.COLUMN_NAME_ROOM_ID)
@JoinColumn(foreignKey = @ForeignKey(ConstraintMode.NO_CONSTRAINT),
name = COLUMN_NAME_ROOM_ID,
nullable = false,
referencedColumnName = OfMucRoom.COLUMN_NAME_ROOM_ID,
updatable = false)
@NamedAttribute(ATTRIBUTE_NAME_ROOM)
private OfMucRoom room;
}