Skip to content

Commit

Permalink
Added/updated new config
Browse files Browse the repository at this point in the history
  • Loading branch information
Monobikash Das authored and Monobikash Das committed Oct 23, 2019
1 parent 6768091 commit 6eff76c
Show file tree
Hide file tree
Showing 8 changed files with 182 additions and 142 deletions.
10 changes: 2 additions & 8 deletions config-templates/RegistrationProcessorIdentity-env.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,8 @@
"age": {
"value" : "age"
},
"addressLine1": {
"value" : "addressLine1"
},
"addressLine2": {
"value" : "addressLine2"
},
"addressLine3": {
"value" : "addressLine3"
"address": {
"value" : "addressLine1,addressLine2,addressLine3"
},
"region": {
"value" : "region"
Expand Down
9 changes: 9 additions & 0 deletions config-templates/RegistrationProcessorPrintTextFile.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"name": "fullName,LastName",
"address": "addressLine1,addressLine2,addressLine3",
"region": "region",
"province": "province",
"city": "city",
"postalCode": "postalCode",
"phoneNumber": "phone"
}
24 changes: 24 additions & 0 deletions config-templates/application-env.properties
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ mosip.id.validation.identity.region.[*].value=^(?=.{0,50}$).*
mosip.id.validation.identity.province.[*].value=^(?=.{0,50}$).*
mosip.id.validation.identity.city.[*].value=^(?=.{0,50}$).*
mosip.id.validation.identity.[*].[*].language=^[(?i)a-z]{3}$
mosip.id.validation.identity.referenceIdentityNumber=^([0-9]{10,30})$
mosip.country.code=MOR

# Language Supported By Platform - ISO
Expand Down Expand Up @@ -337,3 +338,26 @@ mosip.min-digit-longitude-latitude=4
mosip.kernel.filtervalue.max_columns=20
#------------------PDF Genration-----------------------------------------
mosip.kernel.pdf_owner_password={{ pdf_owner_password }}
#-------UIN Alias-------------------
mosip.uin.alias=

#---------------------------------kernel Salt Generator---------------------------------------------------#
mosip.kernel.salt-generator.chunk-size=10
mosip.kernel.salt-generator.start-sequence=0
mosip.kernel.salt-generator.end-sequence=999
#----------------------------------------------------------------------------------------------------------#
#------------------Quality Check-----------------------------------------
#Quality threshold for applicant iris
mosip.iris_threshold=0
#Quality threshold for applicant leftslap fingerprint
mosip.leftslap_fingerprint_threshold=0
#Quality threshold for applicant rightslap fingerprint
mosip.rightslap_fingerprint_threshold=0
#Quality threshold for applicant thumbs fingerprint
mosip.thumbs_fingerprint_threshold=0
#Quality threshold for applicant face
mosip.facequalitythreshold=0
#Bio SDK Integration
mosip.fingerprint.provider=io.mosip.kernel.bioapi.impl.BioApiImpl
mosip.face.provider=io.mosip.kernel.bioapi.impl.BioApiImpl
mosip.iris.provider=io.mosip.kernel.bioapi.impl.BioApiImpl
10 changes: 7 additions & 3 deletions config-templates/id-authentication-env.properties
Original file line number Diff line number Diff line change
Expand Up @@ -331,15 +331,15 @@ notification.time.format=HH:mm:ss

#********* Internal Auth Type *********
#Configure authentication types permissable for internal authentication
internal.auth.types.allowed=otp,bio-FMR,bio-FIR,bio-IIR,bio-FID
internal.auth.types.allowed=otp,bio-FIR,bio-IIR,bio-FID

#************ E-KYC********
#Configure authentications permissable for e-KYC for a country
ekyc.auth.types.allowed=otp,bio-FMR,bio-FIR,bio-IIR,bio-FID
ekyc.auth.types.allowed=otp,bio-FIR,bio-IIR,bio-FID

#***********AuthType Enable***********
#Configure authentications permissable for a country
auth.types.allowed=demo,otp,bio-FMR,bio-FIR,bio-IIR,bio-FID
auth.types.allowed=demo,otp,bio-FIR,bio-IIR,bio-FID

#***********Certificate type************
ida.jws.certificate.type=X.509
Expand All @@ -358,6 +358,8 @@ ida.api.id.vid=mosip.identity.vid
ida.api.id.internal=mosip.identity.auth.internal
ida.api.id.auth.transactions=mosip.identity.authtransactions.read
ida.api.id.otp.internal=mosip.identity.otp.internal
ida.api.id.authtype.status.read=mosip.identity.authtype.status.read
ida.api.id.authtype.status.update=mosip.identity.authtype.status.update

#------------version's---------------------
ida.api.version.auth=1.0
Expand All @@ -368,6 +370,8 @@ ida.api.version.vid=1.0
ida.api.version.internal=1.0
ida.api.version.auth.transactions=1.0
ida.api.version.otp.internal=1.0
ida.api.version.authtype.status.read=1.0
ida.api.version.authtype.status.update=1.0


#------ Static Token Configuration ---------------
Expand Down
5 changes: 5 additions & 0 deletions config-templates/id-repository-env.properties
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ mosip.idrepo.identity.allowedTypes=bio,demo,all
mosip.idrepo.identity.allowedBioAttributes=individualBiometrics
mosip.idrepo.identity.bioAttributes=individualBiometrics,parentOrGuardianBiometrics

#-----------------------ID Repo Identity Service - idobjectvalidator---------------------------------------#
mosip.kernel.idobjectvalidator.referenceValidator=io.mosip.kernel.idobjectvalidator.impl.IdObjectReferenceValidator

#-----------------------ID Repo Identity Service - HDFS----------------------------------------------------#
mosip.kernel.fsadapter.hdfs.user-name=${mosip.idrepo.hdfs.username}

Expand Down Expand Up @@ -92,3 +95,5 @@ mosip.idrepo.retrieve-by-uin.rest.timeout=10
mosip.idrepo.salt-generator.start-sequence=0
mosip.idrepo.salt-generator.end-sequence=999
mosip.idrepo.salt-generator.chunk-size=10
#---------------------------------kernel Salt Generator---------------------------------------------------#
mosip.kernel.salt-generator.db.driverClassName=org.postgresql.Driver
Loading

0 comments on commit 6eff76c

Please sign in to comment.