Example usage for javax.naming OperationNotSupportedException OperationNotSupportedException

List of usage examples for javax.naming OperationNotSupportedException OperationNotSupportedException

Introduction

In this page you can find the example usage for javax.naming OperationNotSupportedException OperationNotSupportedException.

Prototype

public OperationNotSupportedException() 

Source Link

Document

Constructs a new instance of OperationNotSupportedException.

Usage

From source file:de.sub.goobi.helper.ldap.LdapUser.java

@Override
public Object lookup(Name name) throws NamingException {
    throw new OperationNotSupportedException();
}

From source file:de.sub.goobi.helper.ldap.LdapUser.java

@Override
public Object lookup(String name) throws NamingException {
    throw new OperationNotSupportedException();
}

From source file:de.sub.goobi.helper.ldap.LdapUser.java

@Override
public void bind(Name name, Object obj) throws NamingException {
    throw new OperationNotSupportedException();
}

From source file:de.sub.goobi.helper.ldap.LdapUser.java

@Override
public void bind(String name, Object obj) throws NamingException {
    throw new OperationNotSupportedException();
}

From source file:de.sub.goobi.helper.ldap.LdapUser.java

@Override
public void bind(Name name, Object obj, Attributes attrs) throws NamingException {
    throw new OperationNotSupportedException();
}

From source file:de.sub.goobi.helper.ldap.LdapUser.java

@Override
public void bind(String name, Object obj, Attributes attrs) throws NamingException {
    throw new OperationNotSupportedException();
}

From source file:de.sub.goobi.helper.ldap.LdapUser.java

@Override
public void rebind(Name name, Object obj) throws NamingException {
    throw new OperationNotSupportedException();
}

From source file:de.sub.goobi.helper.ldap.LdapUser.java

@Override
public void rebind(String name, Object obj) throws NamingException {
    throw new OperationNotSupportedException();
}

From source file:de.sub.goobi.helper.ldap.LdapUser.java

@Override
public void rebind(Name name, Object obj, Attributes attrs) throws NamingException {
    throw new OperationNotSupportedException();
}

From source file:de.sub.goobi.helper.ldap.LdapUser.java

@Override
public void rebind(String name, Object obj, Attributes attrs) throws NamingException {
    throw new OperationNotSupportedException();
}