blob: 12ff08969e4e37c921639ee91eae28971b001503 [file] [log] [blame]
/*
* 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.core.persistence.jpa.entity;
import javax.persistence.Entity;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
import javax.persistence.UniqueConstraint;
import javax.validation.constraints.NotNull;
import org.apache.syncope.core.persistence.api.entity.FIQLQuery;
import org.apache.syncope.core.persistence.api.entity.user.User;
import org.apache.syncope.core.persistence.jpa.entity.user.JPAUser;
@Entity
@Table(name = JPAFIQLQuery.TABLE, uniqueConstraints =
@UniqueConstraint(columnNames = { "owner_id", "name" }))
public class JPAFIQLQuery extends AbstractGeneratedKeyEntity implements FIQLQuery {
private static final long serialVersionUID = -8800817340585235280L;
public static final String TABLE = "FIQLQuery";
@ManyToOne(optional = false)
private JPAUser owner;
@NotNull
private String name;
@NotNull
private String target;
@NotNull
private String fiql;
@Override
public JPAUser getOwner() {
return owner;
}
@Override
public void setOwner(final User owner) {
checkType(owner, JPAUser.class);
this.owner = (JPAUser) owner;
}
@Override
public String getName() {
return name;
}
@Override
public void setName(final String name) {
this.name = name;
}
@Override
public String getTarget() {
return target;
}
@Override
public void setTarget(final String target) {
this.target = target;
}
@Override
public String getFIQL() {
return fiql;
}
@Override
public void setFIQL(final String fiql) {
this.fiql = fiql;
}
}