blob: 92189b0413021f255b85643d330d5a4453583e7b [file] [log] [blame]
/*-
* ============LICENSE_START=======================================================
* OSAM
* ================================================================================
* Copyright (C) 2018 AT&T
* ================================================================================
* 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.
* ============LICENSE_END=========================================================
*/
package org.onap.osam.aai.model;
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 java.util.HashMap;
import java.util.List;
import java.util.Map;
public class SimpleResult {
@JsonProperty("id")
private String id;
@JsonProperty("node-type")
private String nodeType;
@JsonProperty("url")
private String url;
@JsonProperty("properties")
private Properties properties;
@JsonProperty("related-to")
private List<RelatedTo> relatedTo = null;
@JsonIgnore
private Map<String, Object> additionalProperties = new HashMap<String, Object>();
@JsonProperty("id")
public String getId() {
return id;
}
@JsonProperty("id")
public void setId(String id) {
this.id = id;
}
@JsonProperty("node-type")
public String getNodeType() {
return nodeType;
}
@JsonProperty("node-type")
public void setNodeType(String nodeType) {
this.nodeType = nodeType;
}
@JsonProperty("url")
public String getUrl() {
return url;
}
@JsonProperty("url")
public void setUrl(String url) {
this.url = url;
}
@JsonProperty("properties")
public Properties getProperties() {
return properties;
}
@JsonProperty("properties")
public void setProperties(Properties properties) {
this.properties = properties;
}
@JsonProperty("related-to")
public List<RelatedTo> getRelatedTo() {
return relatedTo;
}
@JsonProperty("related-to")
public void setRelatedTo(List<RelatedTo> relatedTo) {
this.relatedTo = relatedTo;
}
@JsonAnyGetter
public Map<String, Object> getAdditionalProperties() {
return this.additionalProperties;
}
@JsonAnySetter
public void setAdditionalProperty(String name, Object value) {
this.additionalProperties.put(name, value);
}
}