Package org.apache.abdera.protocol.server.provider.managed

Examples of org.apache.abdera.protocol.server.provider.managed.CollectionAdapterConfiguration


    return adapterConfiguration.getConfigData();
  }

  protected AbstractManagedCollectionAdapter createTargetAdapter(MixinConfiguration config)
      throws FeedServerAdapterException {
    CollectionAdapterConfiguration targetAdapterConfig = null;
    try {
      targetAdapterConfig =
          getConfigStore().getAdapterConfiguration(getNameSpace(), config.getTargetAdapterName());
    } catch (FeedConfigStoreException e) {
      throwApplyingWrapperError(config);
View Full Code Here


          e.getMessage());
    }
  }

  public String getNameSpace() {
    CollectionAdapterConfiguration config = getConfiguration().getAdapterConfiguration();
    if (config instanceof NamespacedAdapterConfiguration) {
      return ((NamespacedAdapterConfiguration) config).getServerConfiguration().getNameSpace();
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of org.apache.abdera.protocol.server.provider.managed.CollectionAdapterConfiguration

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.