Пример #1
0
 def __eq__(self, other):
     if not isinstance(other, self.__class__):
         return False
     if not ConfigurationElement.__eq__(self, other):
         return False
     if other.role_oid != self.role_oid:
         return False
     if other.uri != self.uri:
         return False
     if other.uri_check_level != self.uri_check_level:
         return False
     if other.match != self.match:
         return False
     if other.allow_call != self.allow_call:
         return False
     if other.allow_register != self.allow_register:
         return False
     if other.allow_publish != self.allow_publish:
         return False
     if other.allow_subscribe != self.allow_subscribe:
         return False
     if other.disclose_caller != self.disclose_caller:
         return False
     if other.disclose_publisher != self.disclose_publisher:
         return False
     if other.cache != self.cache:
         return False
     if other.created != self.created:
         return False
     if other.owner != self.owner:
         return False
     return True
Пример #2
0
 def __eq__(self, other):
     if not isinstance(other, self.__class__):
         return False
     if not ConfigurationElement.__eq__(self, other):
         return False
     if other.service_type != self.service_type:
         return False
     if other.webcluster_oid != self.webcluster_oid:
         return False
     if other.path != self.path:
         return False
     return True
Пример #3
0
 def __eq__(self, other):
     if not isinstance(other, self.__class__):
         return False
     if not ConfigurationElement.__eq__(self, other):
         return False
     if other.name != self.name:
         return False
     if other.otype != self.otype:
         return False
     if other.registered != self.registered:
         return False
     return True
Пример #4
0
 def __eq__(self, other):
     if not isinstance(other, self.__class__):
         return False
     if not ConfigurationElement.__eq__(self, other):
         return False
     if other.name != self.name:
         return False
     if other.created != self.created:
         return False
     if other.owner != self.owner:
         return False
     return True
Пример #5
0
 def __eq__(self, other):
     if not isinstance(other, self.__class__):
         return False
     if not ConfigurationElement.__eq__(self, other):
         return False
     if other.name != self.name:
         return False
     if other.status != self.status:
         return False
     if other.owner_oid != self.owner_oid:
         return False
     if other.changed != self.changed:
         return False
     return True
Пример #6
0
    def __eq__(self, other):
        if not isinstance(other, self.__class__):
            return False

        if not ConfigurationElement.__eq__(self, other):
            return False

        if other.email != self.email:
            return False
        if other.registered != self.registered:
            return False
        if other.pubkey != self.pubkey:
            return False

        return True
Пример #7
0
 def __eq__(self, other):
     if not isinstance(other, self.__class__):
         return False
     if not ConfigurationElement.__eq__(self, other):
         return False
     if other.modified != self.modified:
         return False
     if other.arealm_oid != self.arealm_oid:
         return False
     if other.authid != self.authid:
         return False
     if other.role_oid != self.role_oid:
         return False
     if other.authextra != self.authextra:
         return False
     return True
Пример #8
0
 def __eq__(self, other):
     if not isinstance(other, self.__class__):
         return False
     if not ConfigurationElement.__eq__(self, other):
         return False
     if other.owner_oid != self.owner_oid:
         return False
     if other.pubkey != self.pubkey:
         return False
     if other.mrealm_oid != self.mrealm_oid:
         return False
     if other.authid != self.authid:
         return False
     if other.authextra != self.authextra:
         return False
     return True
Пример #9
0
 def __eq__(self, other):
     if not isinstance(other, self.__class__):
         return False
     if not ConfigurationElement.__eq__(self, other):
         return False
     if other.name != self.name:
         return False
     if other.status != self.status:
         return False
     if other.changed != self.changed:
         return False
     if other.tcp_version != self.tcp_version:
         return False
     if other.tcp_port != self.tcp_port:
         return False
     if other.tcp_shared != self.tcp_shared:
         return False
     if other.tcp_interface != self.tcp_interface:
         return False
     if other.tcp_backlog != self.tcp_backlog:
         return False
     if other.tls_key != self.tls_key:
         return False
     if other.tls_certificate != self.tls_certificate:
         return False
     if other.tls_chain_certificates != self.tls_chain_certificates:
         return False
     if other.tls_ca_certificates != self.tls_ca_certificates:
         return False
     if other.tls_dhparam != self.tls_dhparam:
         return False
     if other.tls_ciphers != self.tls_ciphers:
         return False
     if other.http_client_timeout != self.http_client_timeout:
         return False
     if other.http_hsts != self.http_hsts:
         return False
     if other.http_hsts_max_age != self.http_hsts_max_age:
         return False
     if other.http_access_log != self.http_access_log:
         return False
     if other.http_display_tracebacks != self.http_display_tracebacks:
         return False
     return True