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

io.katharsis.meta.model.resource.MetaResource Maven / Gradle / Ivy

There is a newer version: 3.0.2
Show newest version
package io.katharsis.meta.model.resource;

import java.util.List;

import io.katharsis.resource.annotations.JsonApiResource;

@JsonApiResource(type = "meta/resource")
public class MetaResource extends MetaJsonObject {

	private String resourceType;

	public void setResourceType(String resourceType) {
		this.resourceType = resourceType;
	}

	public String getResourceType() {
		return resourceType;
	}

	@Override
	public List getDeclaredAttributes() {
		return (List) super.getDeclaredAttributes();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy