Class DependencyDescriptor
- java.lang.Object
-
- de.xima.fc.importer.mdl.descriptor.DependencyDescriptor
-
- All Implemented Interfaces:
Serializable
public class DependencyDescriptor extends Object implements Serializable
- Since:
- 6.60
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DependencyDescriptor(Class<?> entityClass, Long id, UUID uuid, String name)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
determineName(List<IEntityImportConfig<?>> configs)
Class<?>
getEntityClass()
String
getName()
UUID
getUuid()
static DependencyDescriptor
ofID(Class<?> entityClass, Long id)
static DependencyDescriptor
ofName(Class<?> entityClass, String name)
static DependencyDescriptor
ofUUID(Class<?> entityClass, UUID uuid)
static DependencyDescriptor
ofUUIDString(Class<?> entityClass, String uuid)
String
toString()
-
-
-
Method Detail
-
ofID
public static DependencyDescriptor ofID(Class<?> entityClass, Long id)
-
ofUUID
public static DependencyDescriptor ofUUID(Class<?> entityClass, UUID uuid)
-
ofUUIDString
public static DependencyDescriptor ofUUIDString(Class<?> entityClass, String uuid)
-
ofName
public static DependencyDescriptor ofName(Class<?> entityClass, String name)
-
getEntityClass
public Class<?> getEntityClass()
-
getUuid
public UUID getUuid()
-
getName
public String getName()
-
determineName
public void determineName(List<IEntityImportConfig<?>> configs)
-
-