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

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

@Override
public Context createSubcontext(String name) throws NamingException {
    throw new OperationNotSupportedException();
}

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

@Override
public DirContext createSubcontext(Name name, Attributes attrs) throws NamingException {
    throw new OperationNotSupportedException();
}

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

@Override
public DirContext createSubcontext(String name, Attributes attrs) throws NamingException {
    throw new OperationNotSupportedException();
}

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

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

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

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

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

@Override
public NameParser getNameParser(Name name) throws NamingException {
    throw new OperationNotSupportedException();
}

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

@Override
public NameParser getNameParser(String name) throws NamingException {
    throw new OperationNotSupportedException();
}

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

@Override
public String composeName(String name, String prefix) throws NamingException {
    throw new OperationNotSupportedException();
}

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

@Override
public Name composeName(Name name, Name prefix) throws NamingException {
    throw new OperationNotSupportedException();
}