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

edu.byu.hbll.box.internal.web.DocumentsResponse Maven / Gradle / Ivy

There is a newer version: 1.3.5
Show newest version
/** */
package edu.byu.hbll.box.internal.web;

import java.util.ArrayList;
import java.util.List;

/** */
public class DocumentsResponse {

  /** */
  private List documents = new ArrayList<>();

  /** @return the documents */
  public List getDocuments() {
    return documents;
  }

  /** @param documents the documents to set */
  public void setDocuments(List documents) {
    this.documents = documents;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy