/*
*
* Copyright 2016 Netflix, Inc.
*
* 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.netflix.genie.common.dto.search;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.util.ISO8601DateFormat;
import com.fasterxml.jackson.datatype.jdk8.Jdk8Module;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import org.hibernate.validator.constraints.NotBlank;
import java.io.Serializable;
import java.text.DateFormat;
import java.util.TimeZone;
/**
* Base class for search results containing common fields.
*
* @author tgianos
* @since 3.0.0
*/
@Getter
@EqualsAndHashCode(of = "id")
public class BaseSearchResult implements Serializable {
private static final long serialVersionUID = -273035797399359914L;
private static final ObjectMapper MAPPER;
static {
final DateFormat iso8601 = new ISO8601DateFormat();
iso8601.setTimeZone(TimeZone.getTimeZone("UTC"));
MAPPER = new ObjectMapper().registerModule(new Jdk8Module()).setDateFormat(iso8601);
}
private final String id;
private final String name;
private final String user;
/**
* Constructor.
*
* @param id The id of the object in the search result.
* @param name The name of the object in the search result.
* @param user The user who created the object.
*/
@JsonCreator
public BaseSearchResult(
@NotBlank @JsonProperty("id") final String id,
@NotBlank @JsonProperty("name") final String name,
@NotBlank @JsonProperty("user") final String user
) {
this.id = id;
this.name = name;
this.user = user;
}
/**
* Convert this object to a string representation.
*
* @return This application data represented as a JSON structure
*/
@Override
public String toString() {
try {
return MAPPER.writeValueAsString(this);
} catch (final JsonProcessingException ioe) {
return ioe.getLocalizedMessage();
}
}
}