
com.sappenin.utils.rest.v2.model.examples.SampleCollectionMeta Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-utils2 Show documentation
Show all versions of rest-utils2 Show documentation
Utilities, Helpers, and base-classes for assisting in server-side REST API implementations written in
Java.
The newest version!
/**
* Copyright (C) 2014 Sappenin Inc. ([email protected])
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*/
package com.sappenin.utils.rest.v2.model.examples;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.ToString;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.sappenin.utils.rest.v2.model.Link;
import com.sappenin.utils.rest.v2.model.meta.CollectionMeta;
import com.sappenin.utils.rest.v2.model.meta.impl.AbstractCollectionMeta;
/**
* An example extension of {@link AbstractCollectionMeta} which implements {@link CollectionMeta}.
*/
@Getter
@ToString(callSuper = true)
@EqualsAndHashCode(callSuper = true)
public class SampleCollectionMeta extends AbstractCollectionMeta implements CollectionMeta
{
private static final long serialVersionUID = 8407518536812877744L;
// An example pointer to the child of this resource.
@JsonProperty("@sampleChild")
private final Link sampleChildLink;
/**
* Required-args Constructor
*
* @param selfLink
* @param sampleChildLink
*/
public SampleCollectionMeta(@JsonProperty("@self") final Link selfLink,
@JsonProperty("@sampleChild") final Link sampleChildLink)
{
super(selfLink);
this.sampleChildLink = sampleChildLink;
}
/**
* Copy Constructor.
*
* @param meta
*/
public SampleCollectionMeta(final SampleCollectionMeta meta)
{
super(meta);
this.sampleChildLink = meta.getSampleChildLink();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy