| | |
| | | import org.opends.messages.Message; |
| | | |
| | | |
| | | import org.opends.server.protocols.asn1.ASN1OctetString; |
| | | import org.opends.server.types.AuthenticationInfo; |
| | | import org.opends.server.types.AuthenticationType; |
| | | import org.opends.server.types.ByteString; |
| | | import org.opends.server.types.DN; |
| | | import org.opends.server.types.Entry; |
| | | |
| | | import org.opends.server.types.*; |
| | | |
| | | |
| | | /** |
| | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public ASN1OctetString getSASLCredentials() |
| | | public ByteString getSASLCredentials() |
| | | { |
| | | return bind.getSASLCredentials(); |
| | | } |
| | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public ASN1OctetString getServerSASLCredentials() |
| | | public ByteString getServerSASLCredentials() |
| | | { |
| | | return bind.getServerSASLCredentials(); |
| | | } |
| | |
| | | * {@inheritDoc} |
| | | */ |
| | | public void setSASLCredentials(String saslMechanism, |
| | | ASN1OctetString saslCredentials) |
| | | ByteString saslCredentials) |
| | | { |
| | | bind.setSASLCredentials(saslMechanism, saslCredentials); |
| | | } |
| | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public void setServerSASLCredentials(ASN1OctetString serverSASLCredentials) |
| | | public void setServerSASLCredentials(ByteString serverSASLCredentials) |
| | | { |
| | | bind.setServerSASLCredentials(serverSASLCredentials); |
| | | } |