Package org.apache.aries.subsystem.core.archive

Examples of org.apache.aries.subsystem.core.archive.SubsystemImportServiceRequirement


 
  private void setImportIsolationPolicy(RegionFilterBuilder builder, SubsystemImportServiceHeader header) throws InvalidSyntaxException {
    if (header == null)
      return;
    for (SubsystemImportServiceHeader.Clause clause : header.getClauses()) {
      SubsystemImportServiceRequirement requirement = new SubsystemImportServiceRequirement(clause, this);
      String policy = RegionFilter.VISIBLE_SERVICE_NAMESPACE;
      String filter = requirement.getDirectives().get(SubsystemImportServiceRequirement.DIRECTIVE_FILTER);
      builder.allow(policy, filter);
    }
  }
View Full Code Here

TOP

Related Classes of org.apache.aries.subsystem.core.archive.SubsystemImportServiceRequirement

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.