| | |
| | | def __init__(self, iid, name, product, role, host, installDir, tarball, \ |
| | | portLDAP, portLDAPS, portJMX, portREPL, \ |
| | | sslEnabled, certificate, startTlsEnabled, \ |
| | | tuning): |
| | | secureReplication,tuning): |
| | | # from instance object |
| | | self.iid = iid |
| | | self.name = name |
| | |
| | | self.sslEnabled = sslEnabled |
| | | self.certificate = certificate |
| | | self.startTlsEnabled = startTlsEnabled |
| | | self.secureReplication = secureReplication |
| | | self.tuning = tuning |
| | | |
| | | def getLDAPSPort(self): |
| | |
| | | |
| | | def getIsStartTlsEnabled(self): |
| | | return self.startTlsEnabled |
| | | |
| | | |
| | | def getSecureReplication(self): |
| | | return self.secureReplication |
| | | |
| | | def getTuning(self): |
| | | return self.tuning |
| | | |
| | |
| | | cSslEnabled = 'false' |
| | | cCertificate = NOT_DEFINED |
| | | cStartTlsEnabled = 'false' |
| | | cSecureReplication = 'false' |
| | | cIsJava = 'false' |
| | | cXms = NOT_DEFINED |
| | | cXmx = NOT_DEFINED |
| | |
| | | cSslEnabled = _getAttributeNode(thisSubChild,'sslEnabled') |
| | | cCertificate = _getAttributeNode(thisSubChild,'certificate') |
| | | cStartTlsEnabled = _getAttributeNode(thisSubChild,'startTlsEnabled') |
| | | |
| | | cSecureReplication = _getAttributeNode(thisSubChild,'secureReplication') |
| | | |
| | | elif (thisSubChild.getNodeType() == Node.ELEMENT_NODE and |
| | | thisSubChild.getNodeName() == 'tuning'): |
| | |
| | | opendsZip,\ |
| | | cPortLDAP,cPortLDAPS,cPortJMX,cPortREPL,\ |
| | | cSslEnabled,cCertificate,cStartTlsEnabled,\ |
| | | cOpendsTuning)] |
| | | cSecureReplication,cOpendsTuning)] |
| | | |
| | | |
| | | |