blob: ce5e1abbb042d2626196e01d76d2d5dc2344db82 [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.Column;
import javax.persistence.Entity;
import javax.persistence.EnumType;
import javax.persistence.Enumerated;
import javax.persistence.Id;
import javax.persistence.Table;
import org.apache.syncope.common.lib.types.LoggerLevel;
import org.apache.syncope.common.lib.types.LoggerType;
import org.apache.syncope.core.persistence.api.entity.Logger;
@Entity
@Table(name = JPALogger.TABLE)
public class JPALogger extends AbstractEntity implements Logger {
private static final long serialVersionUID = 943012777014416027L;
public static final String TABLE = "SyncopeLogger";
@Id
@Column(name = "logName")
private String key;
@Column(name = "logLevel", nullable = false)
@Enumerated(EnumType.STRING)
private LoggerLevel level;
@Column(name = "logType", nullable = false)
@Enumerated(EnumType.STRING)
private LoggerType type;
@Override
public String getKey() {
return key;
}
@Override
public void setKey(final String name) {
this.key = name;
}
@Override
public LoggerLevel getLevel() {
return level;
}
@Override
public void setLevel(final LoggerLevel level) {
this.level = level;
}
@Override
public LoggerType getType() {
return type;
}
@Override
public void setType(final LoggerType type) {
this.type = type;
}
}