Package org.apache.directory.api.util.exception

Examples of org.apache.directory.api.util.exception.NotImplementedException


    public static class BogusDeleteResponseHandler extends DeleteResponseHandler
    {
        public void deleteResponse( IoSession session, DeleteResponse response )
        {
            throw new NotImplementedException( "handler not implemented!" );
        }
View Full Code Here


    public static class BogusModifyDnRequestHandler extends ModifyDnRequestHandler
    {
        public void modifyDnRequest( IoSession session, ModifyDnRequest request )
        {
            throw new NotImplementedException( "handler not implemented!" );
        }
View Full Code Here

    public static class BogusModifyDnResponseHandler extends ModifyDnResponseHandler
    {
        public void modifyDnResponse( IoSession session, ModifyDnResponse response )
        {
            throw new NotImplementedException( "handler not implemented!" );
        }
View Full Code Here

    public static class BogusModifyRequestHandler extends ModifyRequestHandler
    {
        public void modifyRequest( IoSession session, ModifyRequest request )
        {
            throw new NotImplementedException( "handler not implemented!" );
        }
View Full Code Here

    public static class BogusModifyResponseHandler extends ModifyResponseHandler
    {
        public void modifyResponse( IoSession session, ModifyResponse response )
        {
            throw new NotImplementedException( "handler not implemented!" );
        }
View Full Code Here

    public static class BogusSearchRequestHandler extends SearchRequestHandler
    {
        public void searchRequest( IoSession session, SearchRequest request )
        {
            throw new NotImplementedException( "handler not implemented!" );
        }
View Full Code Here

    public static class BogusSearchResultEntryHandler extends SearchResultEntryHandler
    {
        public void searchResultEntry( IoSession session, SearchResultEntry searchResultEntry )
        {
            throw new NotImplementedException( "handler not implemented!" );
        }
View Full Code Here

    public static class BogusSearchResultReferenceHandler extends SearchResultReferenceHandler
    {
        public void searchResultReference( IoSession session, SearchResultReference searchResultReference )
        {
            throw new NotImplementedException( "handler not implemented!" );
        }
View Full Code Here

    public static class BogusSearchResultDoneHandler extends SearchResultDoneHandler
    {
        public void searchResultDone( IoSession session, SearchResultDone searchResultDone )
        {
            throw new NotImplementedException( "handler not implemented!" );
        }
View Full Code Here

    }


    public Context getReferralContext() throws NamingException
    {
        throw new NotImplementedException();
    }
View Full Code Here

TOP

Related Classes of org.apache.directory.api.util.exception.NotImplementedException

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.