Package org.nasutekds.server.plugins

Examples of org.nasutekds.server.plugins.NullPlugin


   * exception for bind operations.
   */
  @Test(expectedExceptions = { UnsupportedOperationException.class })
  public void testDoPreOperationBind()
  {
    new NullPlugin().doPreOperation((PreOperationBindOperation) null);
  }
View Full Code Here


   * Ensures that the default <CODE>doPreOperation</CODE> method throws an
   * exception for compare operations.
   */
  @Test(expectedExceptions = { UnsupportedOperationException.class })
  public void testDoPreOperationCompare() throws CanceledOperationException {
    new NullPlugin().doPreOperation((PreOperationCompareOperation) null);
  }
View Full Code Here

   * Ensures that the default <CODE>doPreOperation</CODE> method throws an
   * exception for delete operations.
   */
  @Test(expectedExceptions = { UnsupportedOperationException.class })
  public void testDoPreOperationDelete() throws CanceledOperationException {
    new NullPlugin().doPreOperation((PreOperationDeleteOperation) null);
  }
View Full Code Here

   * Ensures that the default <CODE>doPreOperation</CODE> method throws an
   * exception for extended operations.
   */
  @Test(expectedExceptions = { UnsupportedOperationException.class })
  public void testDoPreOperationExtended() throws CanceledOperationException {
    new NullPlugin().doPreOperation((PreOperationExtendedOperation) null);
  }
View Full Code Here

   * Ensures that the default <CODE>doPreOperation</CODE> method throws an
   * exception for modify operations.
   */
  @Test(expectedExceptions = { UnsupportedOperationException.class })
  public void testDoPreOperationModify() throws CanceledOperationException {
    new NullPlugin().doPreOperation((PreOperationModifyOperation) null);
  }
View Full Code Here

   * Ensures that the default <CODE>doPreOperation</CODE> method throws an
   * exception for modify DN operations.
   */
  @Test(expectedExceptions = { UnsupportedOperationException.class })
  public void testDoPreOperationModifyDN() throws CanceledOperationException {
    new NullPlugin().doPreOperation((PreOperationModifyDNOperation) null);
  }
View Full Code Here

   * Ensures that the default <CODE>doPreOperation</CODE> method throws an
   * exception for search operations.
   */
  @Test(expectedExceptions = { UnsupportedOperationException.class })
  public void testDoPreOperationSearch() throws CanceledOperationException {
    new NullPlugin().doPreOperation((PreOperationSearchOperation) null);
  }
View Full Code Here

   * exception for abandon operations.
   */
  @Test(expectedExceptions = { UnsupportedOperationException.class })
  public void testDoPostOperationAbandon()
  {
    new NullPlugin().doPostOperation((PostOperationAbandonOperation) null);
  }
View Full Code Here

   * exception for add operations.
   */
  @Test(expectedExceptions = { UnsupportedOperationException.class })
  public void testDoPostOperationAdd()
  {
    new NullPlugin().doPostOperation((PostOperationAddOperation) null);
  }
View Full Code Here

   * exception for bind operations.
   */
  @Test(expectedExceptions = { UnsupportedOperationException.class })
  public void testDoPostOperationBind()
  {
    new NullPlugin().doPostOperation((PostOperationBindOperation) null);
  }
View Full Code Here

TOP

Related Classes of org.nasutekds.server.plugins.NullPlugin

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.