Package javax.naming

Examples of javax.naming.OperationNotSupportedException


    public Hashtable getEnvironment() throws NamingException {
        throw new OperationNotSupportedException();
    }

    public String getNameInNamespace() throws NamingException {
        throw new OperationNotSupportedException();
    }
View Full Code Here


     *
     * @return the negotiated (or default) value as a {@link Boolean}
     * @throws OperationNotSupportedException if {@link #value} is not of the boolean type
     */
    public Boolean getBooleanValue () throws OperationNotSupportedException {
        throw new OperationNotSupportedException();
    }
View Full Code Here

     *
     * @return the negotiated (or default) value as an {@link Integer}
     * @throws OperationNotSupportedException if {@link #value} is not of the integer type
     */
    public Integer getIntegerValue () throws OperationNotSupportedException {
        throw new OperationNotSupportedException();
    }
View Full Code Here

     * @throws DigestException if a PDU digest error is detected
     * @throws SettingsException if the target tries to access a parameter that has not been declared or negotiated and
     *             that has no default value
     */
    public boolean execute (ProtocolDataUnit pdu) throws OperationNotSupportedException , IOException , InterruptedException , InternetSCSIException , DigestException , SettingsException {
        throw new OperationNotSupportedException();
    }
View Full Code Here

     * @throws SettingsException if the target tries to access a parameter that has not been declared or negotiated and
     *             that has no default value
     * @throws InitiatorLoginRequestException
     */
    public boolean execute () throws OperationNotSupportedException , InternetSCSIException , DigestException , IOException , InterruptedException , SettingsException {
        throw new OperationNotSupportedException();
    }
View Full Code Here

     * @exception OperationNotSupportedException if schema not supported
     * @exception NamingException if a naming exception is encountered
     */
    public DirContext getSchema(String name)
        throws NamingException {
        throw new OperationNotSupportedException();
    }
View Full Code Here

     * @exception OperationNotSupportedException if schema not supported
     * @exception NamingException if a naming exception is encountered
     */
    public DirContext getSchemaClassDefinition(String name)
        throws NamingException {
        throw new OperationNotSupportedException();
    }
View Full Code Here

     * exist
     * @exception NamingException if a naming exception is encountered
     */
    public void unbind(String name)
        throws NamingException {
        throw new OperationNotSupportedException();
    }
View Full Code Here

     * @exception NameAlreadyBoundException if newName is already bound
     * @exception NamingException if a naming exception is encountered
     */
    public void rename(String oldName, String newName)
        throws NamingException {
        throw new OperationNotSupportedException();
    }
View Full Code Here

     * @exception NotContextException if the name is bound but does not name
     * a context, or does not name a context of the appropriate type
     */
    public void destroySubcontext(String name)
        throws NamingException {
        throw new OperationNotSupportedException();
    }
View Full Code Here

TOP

Related Classes of javax.naming.OperationNotSupportedException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.