Tabnine Logo
AxisBinding.getAxisEndpoint
Code IndexAdd Tabnine to your IDE (free)

How to use
getAxisEndpoint
method
in
org.apache.axis2.description.AxisBinding

Best Java code snippets using org.apache.axis2.description.AxisBinding.getAxisEndpoint (Showing top 12 results out of 315)

origin: org.apache.axis2/axis2-kernel

  @Override
  public void applyPolicy() throws AxisFault {
    getAxisEndpoint().getAxisService().applyPolicy();
  }
}
origin: apache/axis2-java

  @Override
  public void applyPolicy() throws AxisFault {
    getAxisEndpoint().getAxisService().applyPolicy();
  }
}
origin: org.apache.axis2/axis2-kernel

public Policy getEffectivePolicy() {
  
  Collection<PolicyComponent> policyList = new ArrayList<PolicyComponent>();
  policyList.addAll(getPolicySubject().getAttachedPolicyComponents());
  
  // AxisBinding
  AxisBinding axisBinding = getAxisBinding();
  if (axisBinding != null) {
    policyList.addAll(axisBinding.getPolicySubject().getAttachedPolicyComponents());
  }
  // AxisEndpoint
  AxisEndpoint axisEndpoint = null;
  if (axisBinding != null) {
    axisEndpoint = axisBinding.getAxisEndpoint();
  }
  if (axisEndpoint != null) {
    policyList.addAll(axisEndpoint.getPolicySubject().getAttachedPolicyComponents());
  }
  
  if (axisOperation != null) {
    policyList.addAll(axisOperation.getPolicySubject().getAttachedPolicyComponents());
  }
  return PolicyUtil.getMergedPolicy(policyList, this);
}
origin: org.apache.axis2/axis2-kernel

public Policy getEffectivePolicy() {
  Collection<PolicyComponent> policyList = new ArrayList<PolicyComponent>();
  policyList.addAll(getPolicySubject().getAttachedPolicyComponents());
   // AxisEndpoint
  AxisEndpoint axisEndpoint = getAxisEndpoint();
  
  if (axisEndpoint != null) {
    policyList.addAll(axisEndpoint.getPolicySubject().getAttachedPolicyComponents());
  }
  
  AxisService service = null;
  
  if (axisEndpoint != null) {
    service = axisEndpoint.getAxisService();
  }
  
  if (service != null) {
    PolicySubject servicePolicySubject = service.getPolicySubject();
    if (servicePolicySubject != null) {
      policyList.addAll(servicePolicySubject.getAttachedPolicyComponents());
    }
  }
  
  return PolicyUtil.getMergedPolicy(policyList,  this);
}
origin: apache/axis2-java

public Policy getEffectivePolicy() {
  Collection<PolicyComponent> policyList = new ArrayList<PolicyComponent>();
  policyList.addAll(getPolicySubject().getAttachedPolicyComponents());
   // AxisEndpoint
  AxisEndpoint axisEndpoint = getAxisEndpoint();
  
  if (axisEndpoint != null) {
    policyList.addAll(axisEndpoint.getPolicySubject().getAttachedPolicyComponents());
  }
  
  AxisService service = null;
  
  if (axisEndpoint != null) {
    service = axisEndpoint.getAxisService();
  }
  
  if (service != null) {
    PolicySubject servicePolicySubject = service.getPolicySubject();
    if (servicePolicySubject != null) {
      policyList.addAll(servicePolicySubject.getAttachedPolicyComponents());
    }
  }
  
  return PolicyUtil.getMergedPolicy(policyList,  this);
}
origin: apache/axis2-java

public Policy getEffectivePolicy() {
  
  Collection<PolicyComponent> policyList = new ArrayList<PolicyComponent>();
  policyList.addAll(getPolicySubject().getAttachedPolicyComponents());
  
  // AxisBinding
  AxisBinding axisBinding = getAxisBinding();
  if (axisBinding != null) {
    policyList.addAll(axisBinding.getPolicySubject().getAttachedPolicyComponents());
  }
  // AxisEndpoint
  AxisEndpoint axisEndpoint = null;
  if (axisBinding != null) {
    axisEndpoint = axisBinding.getAxisEndpoint();
  }
  if (axisEndpoint != null) {
    policyList.addAll(axisEndpoint.getPolicySubject().getAttachedPolicyComponents());
  }
  
  if (axisOperation != null) {
    policyList.addAll(axisOperation.getPolicySubject().getAttachedPolicyComponents());
  }
  return PolicyUtil.getMergedPolicy(policyList, this);
}
origin: org.apache.axis2/axis2-kernel

    .getAxisEndpoint();
if (axisEndpoint != null) {
  policyList.addAll(axisEndpoint.getPolicySubject()
origin: apache/axis2-java

    .getAxisEndpoint();
if (axisEndpoint != null
    && axisEndpoint.getPolicySubject().getLastUpdatedTime().after(
origin: apache/axis2-java

private AxisDescription getUpperLevel(short type, AxisDescription thisLevel) {
  
  switch (type) {
  case AXIS_BINDING_MESSAGE:
    return ((AxisBindingMessage) thisLevel).getAxisBindingOperation();
  case AXIS_BINDING_OPERATION:
    return ((AxisBindingOperation) thisLevel).getAxisBinding();
  case AXIS_BINDING:
    return ((AxisBinding) thisLevel).getAxisEndpoint();
  case AXIS_ENDPOINT:
    return ((AxisEndpoint) thisLevel).getAxisService();
  case AXIS_MESSAGE:
    return ((AxisMessage) thisLevel).getAxisOperation();
  case AXIS_OPERATION:
    return ((AxisOperation) thisLevel).getAxisService();
  case AXIS_SERVICE:
    return ((AxisService) thisLevel).getAxisServiceGroup();
  case AXIS_SERVICE_GROUP:
    return ((AxisServiceGroup) thisLevel).getAxisConfiguration();
  default:
    return null;
  }
}

origin: apache/axis2-java

    .getAxisEndpoint();
if (axisEndpoint != null) {
  policyList.addAll(axisEndpoint.getPolicySubject()
origin: org.apache.axis2/axis2-kernel

private AxisDescription getUpperLevel(short type, AxisDescription thisLevel) {
  
  switch (type) {
  case AXIS_BINDING_MESSAGE:
    return ((AxisBindingMessage) thisLevel).getAxisBindingOperation();
  case AXIS_BINDING_OPERATION:
    return ((AxisBindingOperation) thisLevel).getAxisBinding();
  case AXIS_BINDING:
    return ((AxisBinding) thisLevel).getAxisEndpoint();
  case AXIS_ENDPOINT:
    return ((AxisEndpoint) thisLevel).getAxisService();
  case AXIS_MESSAGE:
    return ((AxisMessage) thisLevel).getAxisOperation();
  case AXIS_OPERATION:
    return ((AxisOperation) thisLevel).getAxisService();
  case AXIS_SERVICE:
    return ((AxisService) thisLevel).getAxisServiceGroup();
  case AXIS_SERVICE_GROUP:
    return ((AxisServiceGroup) thisLevel).getAxisConfiguration();
  default:
    return null;
  }
}

origin: org.apache.axis2/axis2-kernel

    .getAxisEndpoint();
if (axisEndpoint != null
    && axisEndpoint.getPolicySubject().getLastUpdatedTime().after(
org.apache.axis2.descriptionAxisBindinggetAxisEndpoint

Popular methods of AxisBinding

  • getName
  • getChild
  • getProperty
  • getPolicySubject
  • <init>
  • addChild
  • getChildren
  • getType
  • setName
  • setProperty
  • setType
  • addFault
  • setType,
  • addFault,
  • getEffectivePolicy,
  • getFault,
  • getParameterValue,
  • setParent,
  • toWSDL20

Popular in Java

  • Creating JSON documents from java classes using gson
  • startActivity (Activity)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • addToBackStack (FragmentTransaction)
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • JCheckBox (javax.swing)
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
  • Top Vim plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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