org.genesys.blocks.auditlog.service.ClassPKService Maven / Gradle / Ivy
/*
* Copyright 2018 Global Crop Diversity Trust
*
* 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 org.genesys.blocks.auditlog.service;
import org.genesys.blocks.model.ClassPK;
/**
* Service declaration for maintaining class name repository.
*
* @author Matija Obreza
*/
public interface ClassPKService {
/**
* Get or create a {@link ClassPK} for specified class.
*
* @param class1 the class
* @return persisted class reference
*/
ClassPK getClassPk(Class> class1);
/**
* Get classPk classname.
*
* @param id the id
* @return classname of persisted class
*/
String getClassName(Long id);
/**
* Find by short name.
*
* @param classPKShortName the class PK short name
* @return the class PK
*/
ClassPK findByShortName(String classPKShortName);
/**
* Get ClassPK ID for full class name.
*
* @param className the class name
* @return the class pk id
*/
Long getClassPkId(String className);
}