Java tutorial
/* * Copyright 2016-2017 the original author or authors. * * 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.wiiyaya.framework.provider.repository.revision.entity; import org.hibernate.envers.RevisionNumber; import org.springframework.data.repository.history.support.RevisionEntityInformation; import org.springframework.data.util.AnnotationDetectionFieldCallback; import org.springframework.util.Assert; import org.springframework.util.ReflectionUtils; public class ReflectionRevisionEntityInformation implements RevisionEntityInformation { private final Class<?> revisionEntityClass; private final Class<?> revisionNumberType; public ReflectionRevisionEntityInformation(Class<?> revisionEntityClass) { Assert.notNull(revisionEntityClass); AnnotationDetectionFieldCallback fieldCallback = new AnnotationDetectionFieldCallback(RevisionNumber.class); ReflectionUtils.doWithFields(revisionEntityClass, fieldCallback); this.revisionNumberType = fieldCallback.getType(); this.revisionEntityClass = revisionEntityClass; } public Class<?> getRevisionNumberType() { return revisionNumberType; } public boolean isDefaultRevisionEntity() { return false; } public Class<?> getRevisionEntityClass() { return revisionEntityClass; } }