io.sphere.sdk.subscriptions.Subscription Maven / Gradle / Ivy
The newest version!
package io.sphere.sdk.subscriptions;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import io.sphere.sdk.annotations.*;
import io.sphere.sdk.models.Reference;
import io.sphere.sdk.models.Resource;
import io.sphere.sdk.models.WithKey;
import io.sphere.sdk.types.CustomFields;
import io.sphere.sdk.types.TypeDraft;
import javax.annotation.Nullable;
import java.util.List;
@JsonDeserialize(as = SubscriptionImpl.class)
@ResourceValue
@ResourceInfo(pluralName = "subscriptions", pathElement = "subscriptions")
@HasQueryEndpoint
@HasQueryModel
@HasUpdateCommand(javadocSummary = "Updates a subscription.", updateWith = "key")
@HasCreateCommand(javadocSummary = "Creates a {@link io.sphere.sdk.subscriptions.Subscription}.")
@HasDeleteCommand(javadocSummary = "Deletes a subscription.", deleteWith = "key")
@HasByIdGetEndpoint(javadocSummary = "Fetches a subscription by id.")
@HasByKeyGetEndpoint(javadocSummary = "Fetches a subscription by key.")
@HasUpdateActions
public interface Subscription extends Resource, WithKey {
@Nullable
String getKey();
@HasUpdateAction
@IgnoreInQueryModel
Destination getDestination();
@IgnoreInQueryModel
List getMessages();
@IgnoreInQueryModel
List getChanges();
@IgnoreInQueryModel
SubscriptionHealthStatus getStatus();
/**
* Creates a container which contains the full Java type information to deserialize this class from JSON.
*
* @see io.sphere.sdk.json.SphereJsonUtils#readObject(byte[], TypeReference)
* @see io.sphere.sdk.json.SphereJsonUtils#readObject(String, TypeReference)
* @see io.sphere.sdk.json.SphereJsonUtils#readObject(com.fasterxml.jackson.databind.JsonNode, TypeReference)
* @see io.sphere.sdk.json.SphereJsonUtils#readObjectFromResource(String, TypeReference)
*
* @return type reference
*/
static TypeReference typeReference() {
return new TypeReference() {
@Override
public String toString() {
return "TypeReference";
}
};
}
/**
* Creates a reference for one item of this class by a known ID.
*
* An example for categories but this applies for other resources, too:
* {@include.example io.sphere.sdk.categories.CategoryTest#referenceOfId()}
*
* If you already have a resource object, then use {@link #toReference()} instead:
*
* {@include.example io.sphere.sdk.categories.CategoryTest#toReference()}
*
* @param id the ID of the resource which should be referenced.
* @return reference
*/
static Reference referenceOfId(final String id) {
return Reference.of(referenceTypeId(), id);
}
/**
* A type hint for references which resource type is linked in a reference.
* @see Reference#getTypeId()
* @return type hint
*/
static String referenceTypeId() {
return "subscription";
}
/**
* An identifier for this resource which supports {@link CustomFields}.
* @see TypeDraft#getResourceTypeIds()
* @see io.sphere.sdk.types.Custom
* @return ID of this resource type
*/
static String resourceTypeId() {
return "subscription";
}
@Override
default Reference toReference() {
return Reference.of(referenceTypeId(), getId(), this);
}
}