Skip to content

Commit

Permalink
#3611 - Upgrade to Spring 6, Boot 3, Wicket 10, etc.
Browse files Browse the repository at this point in the history
- Fix compatibility of knowledge base type column with Hibernate 6
  • Loading branch information
reckart committed Jun 13, 2023
1 parent 14d38be commit 7582b90
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@

import org.hibernate.annotations.OnDelete;
import org.hibernate.annotations.OnDeleteAction;
import org.hibernate.annotations.Type;

import de.tudarmstadt.ukp.clarin.webanno.model.Project;
import de.tudarmstadt.ukp.inception.kb.IriConstants;
Expand Down Expand Up @@ -82,6 +83,7 @@ public class KnowledgeBase
private String name;

@Enumerated
@Type(KnowledgeBaseType.class)
private RepositoryType type;

/**
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
/*
* Licensed to the Technische Universität Darmstadt under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The Technische Universität Darmstadt
* 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.
*
* 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 de.tudarmstadt.ukp.inception.kb.model;

import de.tudarmstadt.ukp.clarin.webanno.support.PersistentEnumIntegerUserType;
import de.tudarmstadt.ukp.inception.kb.RepositoryType;

public class KnowledgeBaseType
extends PersistentEnumIntegerUserType<RepositoryType>
{
private static final long serialVersionUID = 1L;

@Override
public Class<RepositoryType> returnedClass()
{
return RepositoryType.class;
}
}

0 comments on commit 7582b90

Please sign in to comment.