com.vmware.pscoe.iac.artifact.rest.model.sso.SsoEndpointDto Maven / Gradle / Ivy
/*
* #%L
* artifact-manager
* %%
* Copyright (C) 2023 VMware
* %%
* Build Tools for VMware Aria
* Copyright 2023 VMware, Inc.
*
* This product is licensed to you under the BSD-2 license (the "License"). You may not use this product except in compliance with the BSD-2 License.
*
* This product may include a number of subcomponents with separate copyright notices and license terms. Your use of these subcomponents is subject to the terms and conditions of the subcomponent's license, as noted in the LICENSE file.
* #L%
*/
package com.vmware.pscoe.iac.artifact.rest.model.sso;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
@JsonIgnoreProperties(ignoreUnknown = true)
public class SsoEndpointDto {
@JsonProperty("lastUpdated")
private String lastUpdated;
@JsonProperty("endPointType")
private EndPointType endPointType;
@JsonProperty("serviceInfoId")
private String serviceInfoId;
@JsonProperty("createdDate")
private String createdDate;
@JsonProperty("endPointAttributes")
private List endPointAttributes;
@JsonProperty("id")
private String id;
@JsonProperty("sslTrusts")
private List sslTrusts;
@JsonProperty("url")
private String url;
public String getLastUpdated() {
return lastUpdated;
}
public EndPointType getEndPointType() {
return endPointType;
}
public String getServiceInfoId() {
return serviceInfoId;
}
public String getCreatedDate() {
return createdDate;
}
public List getEndPointAttributes() {
return endPointAttributes;
}
public String getId() {
return id;
}
public List getSslTrusts() {
return sslTrusts;
}
public String getUrl() {
return url;
}
@Override
public String toString() {
return "SsoEndpointDto{" + "lastUpdated = '" + lastUpdated + '\'' + ",endPointType = '" + endPointType + '\'' + ",serviceInfoId = '" + serviceInfoId
+ '\'' + ",createdDate = '" + createdDate + '\'' + ",endPointAttributes = '" + endPointAttributes + '\'' + ",id = '" + id + '\''
+ ",sslTrusts = '" + sslTrusts + '\'' + ",url = '" + url + '\'' + "}";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy