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 void unbind(Name name) throws NamingException {
    throw new OperationNotSupportedException();
}

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

@Override
public void unbind(String name) throws NamingException {
    throw new OperationNotSupportedException();
}

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

@Override
public void rename(Name oldName, Name newName) throws NamingException {
    throw new OperationNotSupportedException();
}

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

@Override
public void rename(String oldName, String newName) throws NamingException {
    throw new OperationNotSupportedException();
}

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

@Override
public NamingEnumeration<NameClassPair> list(Name name) throws NamingException {
    throw new OperationNotSupportedException();
}

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

@Override
public NamingEnumeration<NameClassPair> list(String name) throws NamingException {
    throw new OperationNotSupportedException();
}

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

@Override
public NamingEnumeration<Binding> listBindings(Name name) throws NamingException {
    throw new OperationNotSupportedException();
}

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

@Override
public NamingEnumeration<Binding> listBindings(String name) throws NamingException {
    throw new OperationNotSupportedException();
}

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

@Override
public void destroySubcontext(Name name) throws NamingException {
    throw new OperationNotSupportedException();
}

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

@Override
public void destroySubcontext(String name) throws NamingException {
    throw new OperationNotSupportedException();
}