congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
AxisDescription.getChildren
Code IndexAdd Tabnine to your IDE (free)

How to use
getChildren
method
in
org.apache.axis2.description.AxisDescription

Best Java code snippets using org.apache.axis2.description.AxisDescription.getChildren (Showing top 6 results out of 315)

origin: org.apache.axis2/axis2-kernel

public Iterator<AxisBindingOperation> getChildren(){
  return (Iterator<AxisBindingOperation>) super.getChildren();
}

origin: apache/axis2-java

public Iterator<AxisBindingOperation> getChildren(){
  return (Iterator<AxisBindingOperation>) super.getChildren();
}

origin: apache/axis2-java

/**
 * Applies the policies on the Description Hierarchy recursively.
 *
 * @throws AxisFault an error occurred applying the policy
 */
public void applyPolicy() throws AxisFault {
  AxisConfiguration configuration = getAxisConfiguration();
  if (configuration == null) {
    return;
  }
  Policy applicablePolicy = getApplicablePolicy(this);
  if (applicablePolicy != null) {
    engageModulesForPolicy(applicablePolicy, configuration);
  }
  for (Iterator<? extends AxisDescription> children = getChildren(); children.hasNext();) {
    AxisDescription child = children.next();
    child.applyPolicy();
  }
}
origin: org.apache.axis2/axis2-kernel

/**
 * Applies the policies on the Description Hierarchy recursively.
 *
 * @throws AxisFault an error occurred applying the policy
 */
public void applyPolicy() throws AxisFault {
  AxisConfiguration configuration = getAxisConfiguration();
  if (configuration == null) {
    return;
  }
  Policy applicablePolicy = getApplicablePolicy(this);
  if (applicablePolicy != null) {
    engageModulesForPolicy(applicablePolicy, configuration);
  }
  for (Iterator<? extends AxisDescription> children = getChildren(); children.hasNext();) {
    AxisDescription child = children.next();
    child.applyPolicy();
  }
}
origin: apache/axis2-java

private Policy findPolicy(String id, AxisDescription des) {
    Collection<PolicyComponent> policyElements = des.getPolicySubject().getAttachedPolicyComponents();
  PolicyRegistry registry = new PolicyRegistryImpl();
  Object policyComponent;
  Policy policy = registry.lookup(id);
  if (policy != null) {
    return policy;
  }
  for (Iterator<PolicyComponent> iterator = policyElements.iterator(); iterator.hasNext();) {
    policyComponent = iterator.next();
    if (policyComponent instanceof Policy) {
      // policy found for the id
      if (id.equals(((Policy) policyComponent).getId())) {
        return (Policy) policyComponent;
      }
    }
  }
  AxisDescription child;
  for (Iterator<? extends AxisDescription> iterator = des.getChildren(); iterator.hasNext();) {
    child = (AxisDescription) iterator.next();
    policy = findPolicy(id, child);
    if (policy != null) {
      return policy;
    }
  }
  return null;
}
origin: org.apache.axis2/axis2-transport-http

private Policy findPolicy(String id, AxisDescription des) {
    Collection<PolicyComponent> policyElements = des.getPolicySubject().getAttachedPolicyComponents();
  PolicyRegistry registry = new PolicyRegistryImpl();
  Object policyComponent;
  Policy policy = registry.lookup(id);
  if (policy != null) {
    return policy;
  }
  for (Iterator<PolicyComponent> iterator = policyElements.iterator(); iterator.hasNext();) {
    policyComponent = iterator.next();
    if (policyComponent instanceof Policy) {
      // policy found for the id
      if (id.equals(((Policy) policyComponent).getId())) {
        return (Policy) policyComponent;
      }
    }
  }
  AxisDescription child;
  for (Iterator<? extends AxisDescription> iterator = des.getChildren(); iterator.hasNext();) {
    child = (AxisDescription) iterator.next();
    policy = findPolicy(id, child);
    if (policy != null) {
      return policy;
    }
  }
  return null;
}
org.apache.axis2.descriptionAxisDescriptiongetChildren

Popular methods of AxisDescription

  • addParameter
  • getParent
  • getParameter
    If the parameter is found in the current description then the Parameter will be writable else it wil
  • isEngaged
  • applyPolicy
    This method sets the policy as the default of this AxisDescription instance. Further more this metho
  • getPolicyInclude
  • getPolicySubject
  • canSupportAssertion
  • engageModule
    Engage a Module at this level, keeping track of which level the engage was originally called from. T
  • engageModulesForPolicy
  • engageModulesToAxisDescription
  • getApplicablePolicy
  • engageModulesToAxisDescription,
  • getApplicablePolicy,
  • getAxisConfiguration,
  • getDocumentationNode,
  • getKey,
  • isParameterLocked,
  • onDisengage,
  • onEngage,
  • setDocumentation

Popular in Java

  • Running tasks concurrently on multiple threads
  • scheduleAtFixedRate (Timer)
  • getResourceAsStream (ClassLoader)
  • getExternalFilesDir (Context)
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • JList (javax.swing)
  • FileUtils (org.apache.commons.io)
    General file manipulation utilities. Facilities are provided in the following areas: * writing to a
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
  • PhpStorm for WordPress
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now