Codota Logo
LdapUnwillingToPerformException.<init>
Code IndexAdd Codota to your IDE (free)

How to use
org.apache.directory.api.ldap.model.exception.LdapUnwillingToPerformException
constructor

Best Java code snippets using org.apache.directory.api.ldap.model.exception.LdapUnwillingToPerformException.<init> (Showing top 20 results out of 315)

Refine searchRefine arrow

  • I18n.err
  • Common ways to obtain LdapUnwillingToPerformException
private void myMethod () {
LdapUnwillingToPerformException l =
  • Codota IconResultCodeEnum resultCode;String message;new LdapUnwillingToPerformException(resultCode, message)
  • Codota IconResultCodeEnum resultCode;Exception exception;Exception exception2;new LdapUnwillingToPerformException(resultCode, exception.getMessage(), exception2)
  • Smart code suggestions by Codota
}
origin: org.apache.directory.api/api-ldap-model

/**
 * {@inheritDoc}
 */
@Override
public void register( LdapSyntax schemaObject ) throws LdapException
{
  throw new LdapUnwillingToPerformException( ResultCodeEnum.NO_SUCH_OPERATION, I18n.err( I18n.ERR_13705_CANNOT_MODIFY_SYN_REGISTRY_COPY ) );
}
origin: org.apache.directory.api/api-ldap-model

/**
 * {@inheritDoc}
 */
@Override
public LdapComparator<?> unregister( String numericOid ) throws LdapException
{
  throw new LdapUnwillingToPerformException( ResultCodeEnum.NO_SUCH_OPERATION, I18n.err( I18n.ERR_13702_CANNOT_MODIFY_CMP_REGISTRY_COPY ) );
}
origin: org.apache.directory.api/api-ldap-model

/**
 * {@inheritDoc}
 */
@Override
public void renameSchema( String originalSchemaName, String newSchemaName ) throws LdapException
{
  throw new LdapUnwillingToPerformException( ResultCodeEnum.NO_SUCH_OPERATION, I18n.err( I18n.ERR_13704_CANNOT_MODIFY_DITSR_REGISTRY_COPY ) );
}
origin: org.apache.directory.api/api-ldap-model

/**
 * {@inheritDoc}
 */
@Override
public DitContentRule unregister( String numericOid ) throws LdapException
{
  throw new LdapUnwillingToPerformException( ResultCodeEnum.NO_SUCH_OPERATION, I18n.err( I18n.ERR_13703_CANNOT_MODIFY_DITCR_REGISTRY_COPY ) );
}
origin: org.apache.directory.api/api-ldap-model

/**
 * {@inheritDoc}
 */
@Override
public AttributeType unregister( String numericOid ) throws LdapException
{
  throw new LdapUnwillingToPerformException( ResultCodeEnum.NO_SUCH_OPERATION,
    I18n.err( I18n.ERR_13701_CANNOT_MODIFY_AT_REGISTRY_COPY ) );
}
origin: org.apache.directory.api/api-ldap-model

/**
 * {@inheritDoc}
 */
@Override
public void addMappingFor( AttributeType attributeType ) throws LdapException
{
  throw new LdapUnwillingToPerformException( ResultCodeEnum.NO_SUCH_OPERATION, 
    I18n.err( I18n.ERR_13701_CANNOT_MODIFY_AT_REGISTRY_COPY ) );
}
origin: org.apache.directory.api/api-ldap-model

/**
 * {@inheritDoc}
 */
@Override
public void clear() throws LdapException
{
  throw new LdapUnwillingToPerformException( ResultCodeEnum.NO_SUCH_OPERATION, I18n.err( I18n.ERR_13701_CANNOT_MODIFY_AT_REGISTRY_COPY ) );
}
origin: org.apache.directory.api/api-ldap-model

  /**
   * {@inheritDoc}
   */
  @Override
  public NameForm unregister( NameForm schemaObject ) throws LdapException
  {
    throw new LdapUnwillingToPerformException( ResultCodeEnum.NO_SUCH_OPERATION, I18n.err( I18n.ERR_13708_CANNOT_MODIFY_NF_REGISTRY_COPY ) );
  }
}
origin: org.apache.directory.api/api-ldap-model

/**
 * {@inheritDoc}
 */
@Override
public void clear() throws LdapException
{
  throw new LdapUnwillingToPerformException( ResultCodeEnum.NO_SUCH_OPERATION, I18n.err( I18n.ERR_13711_CANNOT_MODIFY_SC_REGISTRY_COPY ) );
}
origin: org.apache.directory.api/api-ldap-model

/**
 * {@inheritDoc}
 */
@Override
public void unregister( int ruleId ) throws LdapException
{
  throw new LdapUnwillingToPerformException( ResultCodeEnum.NO_SUCH_OPERATION, I18n.err( I18n.ERR_13704_CANNOT_MODIFY_DITSR_REGISTRY_COPY ) );
}
origin: org.apache.directory.api/api-ldap-model

/**
 * {@inheritDoc}
 */
@Override
public void renameSchema( String originalSchemaName, String newSchemaName ) throws LdapException
{
  throw new LdapUnwillingToPerformException( ResultCodeEnum.NO_SUCH_OPERATION, I18n.err( I18n.ERR_13708_CANNOT_MODIFY_NF_REGISTRY_COPY ) );
}
origin: org.apache.directory.api/api-ldap-model

  /**
   * {@inheritDoc}
   */
  @Override
  public LdapSyntax unregister( LdapSyntax schemaObject ) throws LdapException
  {
    throw new LdapUnwillingToPerformException( ResultCodeEnum.NO_SUCH_OPERATION, I18n.err( I18n.ERR_13705_CANNOT_MODIFY_SYN_REGISTRY_COPY ) );
  }
}
origin: org.apache.directory.api/api-ldap-model

/**
 * {@inheritDoc}
 */
@Override
public void register( NameForm schemaObject ) throws LdapException
{
  throw new LdapUnwillingToPerformException( ResultCodeEnum.NO_SUCH_OPERATION, I18n.err( I18n.ERR_13708_CANNOT_MODIFY_NF_REGISTRY_COPY ) );
}
origin: org.apache.directory.api/api-ldap-model

  /**
   * {@inheritDoc}
   */
  @Override
  public ObjectClass unregister( ObjectClass schemaObject ) throws LdapException
  {
    throw new LdapUnwillingToPerformException( ResultCodeEnum.NO_SUCH_OPERATION, I18n.err( I18n.ERR_13710_CANNOT_MODIFY_OC_REGISTRY_COPY ) );
  }
}
origin: org.apache.directory.api/api-ldap-model

/**
 * {@inheritDoc}
 */
@Override
public void register( MatchingRuleUse schemaObject ) throws LdapException
{
  throw new LdapUnwillingToPerformException( ResultCodeEnum.NO_SUCH_OPERATION, I18n.err( I18n.ERR_13707_CANNOT_MODIFY_MRU_REGISTRY_COPY ) );
}
origin: org.apache.directory.api/api-ldap-model

/**
 * {@inheritDoc}
 */
@Override
public void register( MatchingRule schemaObject ) throws LdapException
{
  throw new LdapUnwillingToPerformException( ResultCodeEnum.NO_SUCH_OPERATION, I18n.err( I18n.ERR_13706_CANNOT_MODIFY_MR_REGISTRY_COPY ) );
}
origin: org.apache.directory.api/api-ldap-model

/**
 * {@inheritDoc}
 */
@Override
public void clear() throws LdapException
{
  throw new LdapUnwillingToPerformException( ResultCodeEnum.NO_SUCH_OPERATION, I18n.err( I18n.ERR_13710_CANNOT_MODIFY_OC_REGISTRY_COPY ) );
}
origin: org.apache.directory.api/api-ldap-model

/**
 * {@inheritDoc}
 */
@Override
public MatchingRuleUse unregister( String numericOid ) throws LdapException
{
  throw new LdapUnwillingToPerformException( ResultCodeEnum.NO_SUCH_OPERATION, I18n.err( I18n.ERR_13707_CANNOT_MODIFY_MRU_REGISTRY_COPY ) );
}
origin: org.apache.directory.api/api-ldap-model

  /**
   * {@inheritDoc}
   */
  @Override
  public MatchingRule unregister( MatchingRule schemaObject ) throws LdapException
  {
    throw new LdapUnwillingToPerformException( ResultCodeEnum.NO_SUCH_OPERATION, I18n.err( I18n.ERR_13706_CANNOT_MODIFY_MR_REGISTRY_COPY ) );
  }
}
origin: org.apache.directory.api/api-ldap-model

/**
 * {@inheritDoc}
 */
@Override
public void renameSchema( String originalSchemaName, String newSchemaName ) throws LdapException
{
  throw new LdapUnwillingToPerformException( ResultCodeEnum.NO_SUCH_OPERATION, I18n.err( I18n.ERR_13710_CANNOT_MODIFY_OC_REGISTRY_COPY ) );
}
org.apache.directory.api.ldap.model.exceptionLdapUnwillingToPerformException<init>

Javadoc

Creates a new instance of LdapUnwillingToPerformException, with a default ResultCode to UNWILING_TO_PERFORM.

Popular methods of LdapUnwillingToPerformException

  • getMessage
  • checkResultCode
    Checks to make sure the resultCode value is right for this exception type.
  • setResolvedDn

Popular in Java

  • Creating JSON documents from java classes using gson
  • compareTo (BigDecimal)
  • setScale (BigDecimal)
    Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
  • orElseThrow (Optional)
  • System (java.lang)
    Provides access to system-related information and resources including standard input and output. Ena
  • SecureRandom (java.security)
    This class generates cryptographically secure pseudo-random numbers. It is best to invoke SecureRand
  • Timestamp (java.sql)
    A Java representation of the SQL TIMESTAMP type. It provides the capability of representing the SQL
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • Queue (java.util)
    A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
  • Random (java.util)
    This class provides methods that return pseudo-random values.It is dangerous to seed Random with the
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now