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

org.apache.brooklyn.rest.domain.BrooklynFeatureSummary Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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 org.apache.brooklyn.rest.domain;

import static com.google.common.base.Preconditions.checkNotNull;

import java.io.Serializable;
import java.util.Map;
import java.util.Objects;

import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonAnySetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.google.common.collect.Maps;

public class BrooklynFeatureSummary implements Serializable {

    private static final long serialVersionUID = 4595452639602650453L;

    private final String name;
    private final String symbolicName;
    private final String version;
    private final String lastModified;
    private Map additionalData = Maps.newHashMap();

    public BrooklynFeatureSummary(
                @JsonProperty("name") String name,
                @JsonProperty("symbolicName") String symbolicName,
                @JsonProperty("version") String version,
                @JsonProperty("lastModified") String lastModified) {
        this.symbolicName = checkNotNull(symbolicName, "symbolicName");
        this.name = name;
        this.version = version;
        this.lastModified = lastModified;
    }

    public BrooklynFeatureSummary(String name, String symbolicName, String version, String lastModified, Map additionalData) {
        this(name, symbolicName, version, lastModified);
        this.additionalData = additionalData;
    }

    @JsonIgnore
    public Map getAdditionalData() {
        return additionalData;
    }

    public String getLastModified() {
        return lastModified;
    }

    public String getName() {
        return name;
    }

    public String getSymbolicName() {
        return symbolicName;
    }

    public String getVersion() {
        return version;
    }

    @JsonAnyGetter
    private Map any() {
        return additionalData;
    }

    @JsonAnySetter
    private void set(String name, String value) {
        additionalData.put(name, value);
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (!(o instanceof BrooklynFeatureSummary)) return false;
        BrooklynFeatureSummary that = (BrooklynFeatureSummary) o;
        return Objects.equals(name, that.name) &&
                Objects.equals(symbolicName, that.symbolicName) &&
                Objects.equals(version, that.version) &&
                Objects.equals(lastModified, that.lastModified) &&
                Objects.equals(additionalData, that.additionalData);
    }

    @Override
    public int hashCode() {
        return Objects.hash(name, symbolicName, version, lastModified, additionalData);
    }

    @Override
    public String toString() {
        return "BrooklynFeatureSummary{" +
                "name='" + name + '\'' +
                ", symbolicName='" + symbolicName + '\'' +
                ", version='" + version + '\'' +
                ", lastModified='" + lastModified + '\'' +
                ", additionalData=" + additionalData +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy