com.adobe.cq.mcm.campaign.LinkingStatus 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.adobe.cq.mcm.campaign;
public final class LinkingStatus {
private final boolean isApproved;
private final String[] linkedDeliveries;
public LinkingStatus(boolean isApproved, String[] linkedDeliveries) {
this.isApproved = isApproved;
this.linkedDeliveries = linkedDeliveries;
}
public boolean isApproved() {
return this.isApproved;
}
public String[] getLinkedDeliveries() {
return this.linkedDeliveries;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy