com.synopsys.integration.issuetracker.jira.common.JiraIssueSearchProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of issuetracker-jira Show documentation
Show all versions of issuetracker-jira Show documentation
A library providing a framework to be able to interact with issue tracking systems in order to create and resolve issues.
/**
* issuetracker-jira
*
* Copyright (c) 2020 Synopsys, Inc.
*
* 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 com.synopsys.integration.issuetracker.jira.common;
import java.io.Serializable;
import com.synopsys.integration.issuetracker.common.message.IssueSearchProperties;
import com.synopsys.integration.util.Stringable;
public class JiraIssueSearchProperties extends Stringable implements Serializable, IssueSearchProperties {
private static final long serialVersionUID = -7384976347665315153L;
private String provider;
private String providerUrl;
private String topicName;
private String topicValue;
private String subTopicName;
private String subTopicValue;
private String category;
private String componentName;
private String componentValue;
private String subComponentName;
private String subComponentValue;
private String additionalKey;
public JiraIssueSearchProperties() {
// For serialization
}
public JiraIssueSearchProperties(
String provider,
String providerUrl,
String topicName,
String topicValue,
String subTopicName,
String subTopicValue,
String category,
String componentName,
String componentValue,
String subComponentName,
String subComponentValue,
String additionalKey
) {
this.provider = provider;
this.providerUrl = providerUrl;
this.topicName = topicName;
this.topicValue = topicValue;
this.subTopicName = subTopicName;
this.subTopicValue = subTopicValue;
this.category = category;
this.componentName = componentName;
this.componentValue = componentValue;
this.subComponentName = subComponentName;
this.subComponentValue = subComponentValue;
this.additionalKey = additionalKey;
}
public String getProvider() {
return provider;
}
public String getProviderUrl() {
return providerUrl;
}
public String getTopicName() {
return topicName;
}
public String getTopicValue() {
return topicValue;
}
public String getSubTopicName() {
return subTopicName;
}
public String getSubTopicValue() {
return subTopicValue;
}
public String getCategory() {
return category;
}
public String getComponentName() {
return componentName;
}
public String getComponentValue() {
return componentValue;
}
public String getSubComponentName() {
return subComponentName;
}
public String getSubComponentValue() {
return subComponentValue;
}
public String getAdditionalKey() {
return additionalKey;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy