blob: cfc5bc97900162f7b9d790dda668efff4b2b4eb2 [file] [log] [blame]
/*
* 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.nifi.web.api.dto;
import io.swagger.annotations.ApiModelProperty;
import javax.xml.bind.annotation.XmlType;
import java.util.Objects;
/**
* Class used for providing details of a Controller Service API.
*/
@XmlType(name = "controllerServiceApi")
public class ControllerServiceApiDTO {
private String type;
private BundleDTO bundle;
/**
* @return The type is the fully-qualified name of the service interface
*/
@ApiModelProperty(
value = "The fully qualified name of the service interface."
)
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
/**
* The details of the artifact that bundled this service interface.
*
* @return The bundle details
*/
@ApiModelProperty(
value = "The details of the artifact that bundled this service interface."
)
public BundleDTO getBundle() {
return bundle;
}
public void setBundle(BundleDTO bundle) {
this.bundle = bundle;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
final ControllerServiceApiDTO that = (ControllerServiceApiDTO) o;
return Objects.equals(type, that.type) && Objects.equals(bundle, that.bundle);
}
@Override
public int hashCode() {
return Objects.hash(type, bundle);
}
}