All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.ionoscloud.s3.messages.QueueConfiguration Maven / Gradle / Ivy

The newest version!
package com.ionoscloud.s3.messages;

import org.simpleframework.xml.Element;
import org.simpleframework.xml.Root;

/** Helper class to denote Queue configuration of {@link NotificationConfiguration}. */
@Root(name = "QueueConfiguration", strict = false)
public class QueueConfiguration extends NotificationCommonConfiguration {
  @Element(name = "Queue")
  private String queue;

  public QueueConfiguration() {
    super();
  }

  /** Returns queue. */
  public String queue() {
    return queue;
  }

  /** Sets queue. */
  public void setQueue(String queue) {
    this.queue = queue;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy