Examples of NullPlugin


Examples of org.nasutekds.server.plugins.NullPlugin

   * exception for unbind operations.
   */
  @Test(expectedExceptions = { UnsupportedOperationException.class })
  public void testDoPreParseUnbind()
  {
    new NullPlugin().doPreParse((PreParseUnbindOperation) null);
  }
View Full Code Here

Examples of org.nasutekds.server.plugins.NullPlugin

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

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

Examples of org.nasutekds.server.plugins.NullPlugin

   * 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

Examples of org.nasutekds.server.plugins.NullPlugin

   * 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

Examples of org.nasutekds.server.plugins.NullPlugin

   * 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

Examples of org.nasutekds.server.plugins.NullPlugin

   * 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

Examples of org.nasutekds.server.plugins.NullPlugin

   * 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

Examples of org.nasutekds.server.plugins.NullPlugin

   * 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

Examples of org.nasutekds.server.plugins.NullPlugin

   * exception for abandon operations.
   */
  @Test(expectedExceptions = { UnsupportedOperationException.class })
  public void testDoPostOperationAbandon()
  {
    new NullPlugin().doPostOperation((PostOperationAbandonOperation) null);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.