ref #9940 add accession type to type designation formatting in portal
[cdmlib.git] / cdmlib-api / src / main / java / eu / etaxonomy / cdm / api / dto / portal / config / TaxonPageDtoConfiguration.java
index 529a7352b8ab67519104d6e63056bd122c532c36..4d5cf0aa4482510c183877997e8404413180ba1f 100644 (file)
@@ -66,6 +66,9 @@ public class TaxonPageDtoConfiguration implements ISourceableLoaderConfiguration
     private boolean withTaxonRelationships = true;
     private UUID taxonRelationshipTypeTree = null;
 
+    //typification
+    private boolean withAccessionType = true;
+
     //facts
     private UUID featureTree = null;
     private DistributionInfoConfiguration distributionInfoConfiguration = new DistributionInfoConfiguration();
@@ -267,4 +270,11 @@ public class TaxonPageDtoConfiguration implements ISourceableLoaderConfiguration
     public void setUseDtoLoading(boolean useDtoLoading) {
         this.useDtoLoading = useDtoLoading;
     }
+
+    public boolean isWithAccessionType() {
+        return withAccessionType;
+    }
+    public void setWithAccessionType(boolean withAccessionType) {
+        this.withAccessionType = withAccessionType;
+    }
 }
\ No newline at end of file