com.microsoft.store.partnercenter.models.utils.TripletTuple Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of partnercenter Show documentation
Show all versions of partnercenter Show documentation
SDK for accessing Microsoft Partner Center API.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See the LICENSE file in the project root for full license information.
package com.microsoft.store.partnercenter.models.utils;
public class TripletTuple
{
private T1 item1;
private T2 item2;
private T3 item3;
public TripletTuple( T1 item1, T2 item2, T3 item3 )
{
this.item1 = item1;
this.item2 = item2;
this.item3 = item3;
}
public T1 getItem1()
{
return item1;
}
public void setItem1( T1 item1 )
{
this.item1 = item1;
}
public T2 getItem2()
{
return item2;
}
public void setItem2( T2 item2 )
{
this.item2 = item2;
}
public T3 getItem3()
{
return item3;
}
public void setItem3( T3 item3 )
{
this.item3 = item3;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy