Class FolderImporterDescriptor
- java.lang.Object
-
- org.nuxeo.ecm.platform.filemanager.service.extension.FolderImporterDescriptor
-
- All Implemented Interfaces:
Descriptor
public class FolderImporterDescriptor extends Object implements Descriptor
-
-
Field Summary
Fields Modifier and Type Field Description protected String
className
Deprecated.since 11.1.protected Class<? extends FolderImporter>
klass
protected String
name
-
Fields inherited from interface org.nuxeo.runtime.model.Descriptor
UNIQUE_DESCRIPTOR_ID
-
-
Constructor Summary
Constructors Constructor Description FolderImporterDescriptor()
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description String
getClassName()
Deprecated.since 11.1.String
getId()
The descriptor id, descriptors with same id are merged.String
getName()
FolderImporter
newInstance()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.nuxeo.runtime.model.Descriptor
doesRemove, merge
-
-
-
-
Field Detail
-
name
protected String name
-
className
@Deprecated(since="11.1") protected String className
Deprecated.since 11.1.
-
klass
protected Class<? extends FolderImporter> klass
-
-
Method Detail
-
getName
public String getName()
-
getClassName
@Deprecated(since="11.1") public String getClassName()
Deprecated.since 11.1.
-
newInstance
public FolderImporter newInstance()
- Since:
- 11.1
-
getId
public String getId()
Description copied from interface:Descriptor
The descriptor id, descriptors with same id are merged.To forbid multiple descriptors use UNIQUE_DESCRIPTOR_ID.
To forbid merge use a unique value, non-overriden
toString()
for exemple.- Specified by:
getId
in interfaceDescriptor
-
-