com.day.cq.dam.scene7.api.Scene7SPSIpsWebService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
package com.day.cq.dam.scene7.api;
import java.util.Map;
public interface Scene7SPSIpsWebService {
/**
* Origin Server URL present in ipsWeb.xml
*/
String IS_ORIGIN_SERVER = "isOriginServer";
/**
* Publish Server URL present in ipsWeb.xml
*/
String IS_PUBLISH_SERVER = "isPublishServer";
/**
* AGM Server URL present in ipsWeb.xml
*/
String AGM_SERVER = "agmServer";
/**
* Test Context Server URL present in ipsWeb.xml
*/
String TEST_CONTEXT_SERVER = "testContextServer";
/**
* Returns the details from SPS ipsWeb.xml
* @param url sps url to get the ipsWeb.xml details
* @return key value pair for details in ipsweb.xml
*/
Map getIPSWebDetails(final String url);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy