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

com.fluidbpm.program.api.vo.attachment.AttachmentListing Maven / Gradle / Ivy

Go to download

Used for the * Custom Program Step, * Custom Actions, * Scheduled Actions and * Fluid API in the Fluid BPM and Content Management system.

There is a newer version: 1.12
Show newest version
/*
 * Koekiebox CONFIDENTIAL
 *
 * [2012] - [2017] Koekiebox (Pty) Ltd
 * All Rights Reserved.
 *
 * NOTICE: All information contained herein is, and remains the property
 * of Koekiebox and its suppliers, if any. The intellectual and
 * technical concepts contained herein are proprietary to Koekiebox
 * and its suppliers and may be covered by South African and Foreign Patents,
 * patents in process, and are protected by trade secret or copyright law.
 * Dissemination of this information or reproduction of this material is strictly
 * forbidden unless prior written permission is obtained from Koekiebox.
 */

package com.fluidbpm.program.api.vo.attachment;

import javax.xml.bind.annotation.XmlTransient;

import org.json.JSONObject;

import com.fluidbpm.program.api.vo.ABaseListing;

/**
 * 

* Represents a {@code List} of {@code Attachment}s. *

* * @author jasonbruwer * @since v1.8 * * @see Attachment * @see ABaseListing */ public class AttachmentListing extends ABaseListing { public static final long serialVersionUID = 1L; /** * Default constructor. */ public AttachmentListing() { super(); } /** * Populates local variables with {@code jsonObjectParam}. * * @param jsonObjectParam The JSON Object. */ public AttachmentListing(JSONObject jsonObjectParam){ super(jsonObjectParam); } /** * Converts the {@code jsonObjectParam} to a {@code Attachment} object. * * @param jsonObjectParam The JSON object to convert to {@code Attachment}. * @return New {@code Attachment} instance. */ @Override @XmlTransient public Attachment getObjectFromJSONObject(JSONObject jsonObjectParam) { return new Attachment(jsonObjectParam); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy