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

com.github.peckb1.examples.base.FraggleList Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package com.github.peckb1.examples.base;

import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.List;

public class FraggleList {
    private static final String FRAGGLES_KEY = "fraggles";
    
    @JsonProperty(value = FRAGGLES_KEY, required = true)
    private final List fraggles;
    
    public FraggleList(@JsonProperty(value = FRAGGLES_KEY, required = true) List fraggles) {
        this.fraggles = fraggles;
    }
    
    public List getFraggles() {
        return this.fraggles;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy