com.softlayer.api.service.user.customer.link.VerifiedIamIdLinkCollection Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of softlayer-api-client Show documentation
Show all versions of softlayer-api-client Show documentation
API client for accessing the SoftLayer API
package com.softlayer.api.service.user.customer.link;
import com.softlayer.api.annotation.ApiProperty;
import com.softlayer.api.annotation.ApiType;
import com.softlayer.api.service.Entity;
import com.softlayer.api.service.user.customer.Link;
import java.util.ArrayList;
import java.util.List;
/**
* @see SoftLayer_User_Customer_Link_VerifiedIamIdLinkCollection
*/
@ApiType("SoftLayer_User_Customer_Link_VerifiedIamIdLinkCollection")
public class VerifiedIamIdLinkCollection extends Entity {
@ApiProperty(canBeNullOrNotSet = true)
protected List badLinksDifferentIUI;
public List getBadLinksDifferentIUI() {
if (badLinksDifferentIUI == null) {
badLinksDifferentIUI = new ArrayList();
}
return badLinksDifferentIUI;
}
protected boolean badLinksDifferentIUISpecified;
public boolean isBadLinksDifferentIUISpecified() {
return badLinksDifferentIUISpecified;
}
public void unsetBadLinksDifferentIUI() {
badLinksDifferentIUI = null;
badLinksDifferentIUISpecified = false;
}
@ApiProperty(canBeNullOrNotSet = true)
protected List badLinksDifferentUsername;
public List getBadLinksDifferentUsername() {
if (badLinksDifferentUsername == null) {
badLinksDifferentUsername = new ArrayList();
}
return badLinksDifferentUsername;
}
protected boolean badLinksDifferentUsernameSpecified;
public boolean isBadLinksDifferentUsernameSpecified() {
return badLinksDifferentUsernameSpecified;
}
public void unsetBadLinksDifferentUsername() {
badLinksDifferentUsername = null;
badLinksDifferentUsernameSpecified = false;
}
@ApiProperty(canBeNullOrNotSet = true)
protected List goodLinks;
public List getGoodLinks() {
if (goodLinks == null) {
goodLinks = new ArrayList();
}
return goodLinks;
}
protected boolean goodLinksSpecified;
public boolean isGoodLinksSpecified() {
return goodLinksSpecified;
}
public void unsetGoodLinks() {
goodLinks = null;
goodLinksSpecified = false;
}
public static class Mask extends com.softlayer.api.service.Entity.Mask {
public com.softlayer.api.service.user.customer.Link.Mask badLinksDifferentIUI() {
return withSubMask("badLinksDifferentIUI", com.softlayer.api.service.user.customer.Link.Mask.class);
}
public com.softlayer.api.service.user.customer.Link.Mask badLinksDifferentUsername() {
return withSubMask("badLinksDifferentUsername", com.softlayer.api.service.user.customer.Link.Mask.class);
}
public com.softlayer.api.service.user.customer.Link.Mask goodLinks() {
return withSubMask("goodLinks", com.softlayer.api.service.user.customer.Link.Mask.class);
}
}
}