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

com.robothy.s3.rest.model.response.CommonPrefix Maven / Gradle / Ivy

package com.robothy.s3.rest.model.response;

import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import lombok.AllArgsConstructor;
import lombok.NoArgsConstructor;

@AllArgsConstructor
@NoArgsConstructor
@JacksonXmlRootElement(localName = "CommonPrefixes")
public class CommonPrefix {

  @JacksonXmlProperty(localName = "Prefix")
  private String prefix;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy