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 addToEnvironment(String propName, Object propVal) throws NamingException {
    throw new OperationNotSupportedException();
}

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

@Override
public Object removeFromEnvironment(String propName) throws NamingException {
    throw new OperationNotSupportedException();
}

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

@Override
public Hashtable<?, ?> getEnvironment() throws NamingException {
    throw new OperationNotSupportedException();
}

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

@Override
public void close() throws NamingException {
    throw new OperationNotSupportedException();
}

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

@Override
public void modifyAttributes(Name name, int modOp, Attributes attrs) throws NamingException {
    throw new OperationNotSupportedException();
}

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

@Override
public void modifyAttributes(String name, int modOp, Attributes attrs) throws NamingException {
    throw new OperationNotSupportedException();
}

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

@Override
public void modifyAttributes(Name name, ModificationItem[] mods) throws NamingException {
    throw new OperationNotSupportedException();
}

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

@Override
public void modifyAttributes(String name, ModificationItem[] mods) throws NamingException {
    throw new OperationNotSupportedException();
}

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

@Override
public DirContext getSchema(Name name) throws NamingException {
    throw new OperationNotSupportedException();
}

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

@Override
public DirContext getSchema(String name) throws NamingException {
    throw new OperationNotSupportedException();
}