MACTenantConfigurationUtil.java
519 Bytes
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.adobe.cq.dam.mac.sync.api.SyncAgent
*/
package com.adobe.cq.dam.mac.sync.helper.impl.util;
import com.adobe.cq.dam.mac.sync.api.SyncAgent;
public class MACTenantConfigurationUtil {
public static String getCorrespondingReplicationAgentName(SyncAgent syncAgent, String tenant) {
String agentResourceName = syncAgent.getName() + " " + tenant;
return agentResourceName.replaceAll(" ", "_").toLowerCase();
}
}