
com.blazebit.query.connector.jira.cloud.GroupMember Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blaze-query-connector-jira-cloud-jersey3 Show documentation
Show all versions of blaze-query-connector-jira-cloud-jersey3 Show documentation
A multi-platform querying library
The newest version!
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright Blazebit
*/
package com.blazebit.query.connector.jira.cloud;
/**
* @author Christian Beikov
* @since 1.0.0
*/
public class GroupMember {
private final String groupName;
private final String userName;
public GroupMember(String groupName, String userName) {
this.groupName = groupName;
this.userName = userName;
}
public String getGroupName() {
return groupName;
}
public String getUserName() {
return userName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy