![JAR search and dependency download from the Maven repository](/logo.png)
com.lionbridge.content.sdk.models.NotificationSubscription Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liox-content-sdk-java Show documentation
Show all versions of liox-content-sdk-java Show documentation
Client for Lionbridge Ondemand API
package com.lionbridge.content.sdk.models;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import javax.xml.bind.annotation.XmlRootElement;
@JacksonXmlRootElement(localName="NotificationSubscription")
@XmlRootElement
public class NotificationSubscription {
@JacksonXmlProperty(localName="Endpoint")
String endpoint;
@JacksonXmlProperty(localName="EventName")
String eventName;
public String getEndpoint() {
return endpoint;
}
public void setEndpoint(String endpoint) {
this.endpoint = endpoint;
}
public String getEventName() {
return eventName;
}
public void setEventName(String eventName) {
this.eventName = eventName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy