This SDK uses semantic versioning and follows Okta's library version policy. In short, we do not make breaking changes unless the major version changes!
In previous versions we use an Open API v2 specification for the management APIs, and an Okta custom client generator to generate the SDK components. A new version of the Open API specification v3 has been released, and new well-known open source generators are now available to automatically generate code from this specification.
This revision will embrace the Open Source openapi-generator to auto generate the code from Okta's reference specification (v3) of the Management APIs.
ExtensibleResource
is removed as the individual models no longer extend from this class. This is also partly due to the way the code generator tooling works when it generates the model classes. Client can directly serialize/deserialize API responses into the respective model classes. There should ideally be no need
for a workaround or replacement of ExtensibleResource
.
In older version, you would instantiate a global Client
and access the Okta resources using the Management APIs.
Now, each API area (such as Users, Groups, Applications etc.) would have its own specific client, so you will only instantiate those clients you are interested in:
Note that the below okta-sdk-httpclient
dependency we used in previous versions is no longer needed:
<dependency>
<groupId>com.okta.sdk</groupId>
<artifactId>okta-sdk-httpclient</artifactId>
<scope>runtime</scope>
</dependency>
Earlier:
Client client = Clients.builder()
.setOrgUrl("https://{yourOktaDomain}") // e.g. https://dev-123456.okta.com
.setClientCredentials(new TokenClientCredentials("{apiToken}"))
.build();
User user = client.getUser("a-user-id");
Application app = client.getApplication("appId");
Now:
ApiClient client = Clients.builder()
.setOrgUrl("https://{yourOktaDomain}") // e.g. https://dev-123456.okta.com
.setClientCredentials(new TokenClientCredentials("{apiToken}"))
.build();
UserApi userApi = new UserApi(client);
User user = userApi.getUser("userId");
ApplicationApi applicationApi = new ApplicationApi(client);
Application app = applicationApi.getApplication("appId", null);
Version 8.0.0 of this SDK introduces few breaking changes from previous versions.
Below methods will now take file
object as additional param. This was missing from earlier release (bug) and this release fixes it.
updateBrandThemeBackgroundImage
updateBrandThemeFavicon
uploadBrandThemeLogo
updateOrgLogo
will now takefile
object as a parameter. This was missing from earlier release (bug) and this release fixes it.
Below methods have been added.
Brand getBrand(String brandId)
ThemeResponse getBrandTheme(String brandId, String themeId)
BrandList listBrands()
ThemeResponseList listBrandThemes(String brandId)
Below methods have been moved to com.okta.sdk.resource.org.OrgSetting
.
getOktaCommunicationSettings()
getOrgContactTypes()
getOrgContactUser(String contactType)
getOrgOktaSupportSettings()
getOrgPreferences()
assignRole(AssignRoleRequest request, String disableNotifications)
changed signature toassignRole(AssignRoleRequest request, Boolean disableNotifications)
New Interfaces have been introduced.
com.okta.sdk.resource.policy.VerificationMethod
com.okta.sdk.resource.policy.UserTypeCondition
com.okta.sdk.resource.policy.ProfileEnrollmentPolicyRuleProfileAttribute
com.okta.sdk.resource.policy.ProfileEnrollmentPolicyRuleActivationRequirement
com.okta.sdk.resource.policy.ProfileEnrollmentPolicyRuleActions
com.okta.sdk.resource.policy.ProfileEnrollmentPolicyRuleAction
com.okta.sdk.resource.policy.ProfileEnrollmentPolicyRule
com.okta.sdk.resource.policy.ProfileEnrollmentPolicy
com.okta.sdk.resource.policy.PreRegistrationInlineHook
com.okta.sdk.resource.policy.PossessionConstraint
com.okta.sdk.resource.policy.KnowledgeConstraint
com.okta.sdk.resource.policy.DeviceAccessPolicyRuleCondition
com.okta.sdk.resource.policy.AccessPolicyRuleCustomCondition
com.okta.sdk.resource.policy.AccessPolicyRuleConditions
com.okta.sdk.resource.policy.AccessPolicyRuleApplicationSignOn
com.okta.sdk.resource.policy.AccessPolicyRuleActions
com.okta.sdk.resource.policy.AccessPolicyRule
com.okta.sdk.resource.policy.AccessPolicyConstraints
com.okta.sdk.resource.policy.AccessPolicyConstraint
com.okta.sdk.resource.policy.AccessPolicy
Identity Provider of type String can be constructed with the new method introduced.
ofType(java.lang.String)
setType(com.okta.sdk.resource.identity.provider.IdentityProvider$TypeEnum)
has changed signature tosetType(String identityProvider)
.getType()
would now returnString
instead ofcom.okta.sdk.resource.identity.provider.IdentityProvider$TypeEnum
type.
New models related to Theme and Brands API have been introduced.
Theme
Brand
BrandList
ThemeResponse
ImageUploadResponse
SignInPageTouchPointVariant
ErrorPageTouchPointVariant
EndUserDashboardTouchPointVariant
New Interfaces have been introduced.
ChannelBinding
Compliance
AuthenticatorProviderConfigurationUserNamePlate
AuthenticatorProviderConfiguration
AuthenticatorProvider
New methods have been added to Authenticator
interface.
AuthenticatorProvider getProvider()
setProvider(AuthenticatorProvider authenticationProvider)
Authenticator update
New methods have been added to SwaApplicationSettingsApplication
interface.
String getCheckbox
String getRedirectUrl
SwaApplicationSettingsApplication setCheckbox(String checkBox)
SwaApplicationSettingsApplication setRedirectUrl(String redirectUrl)
New method have been added to OIDCApplicationBuilder
interface.
OIDCApplicationBuilder setPostLogoutRedirectUris(List uris)
New methods have been added to ApplicationCredentialsUsernameTemplate
interface.
String getPushStatus()
ApplicationCredentialsUsernameTemplate setPushStatus(String pushStatus)
Version 6.0.0 of this SDK introduces a number of breaking changes from previous versions. In addition to many new classes/interfaces, some existing classes/interfaces are no longer backward compatible due to method renaming and signature changes.
Below methods have been added.
Authenticator getAuthenticator(String authenticatorId)
GroupSchema getGroupSchema()
OrgOktaCommunicationSetting getOktaCommunicationSettings()
OrgContactTypeObjList getOrgContactTypes()
OrgContactUser getOrgContactUser(String contactType)
OrgOktaSupportSettingsObj getOrgOktaSupportSettings()
OrgPreferences getOrgPreferences()
OrgSetting getOrgSettings()
AuthenticatorList listAuthenticators()
GroupSchema updateGroupSchema()
GroupSchema updateGroupSchema(GroupSchema body)
Below method has undergone a signature change.
DomainList listDomains()
signature changed toDomainListResponse listDomains()
Below methods have been added.
Boolean getAutoLaunch()
ApplicationVisibility setAutoLaunch(Boolean autoLaunch)
This is a newly created enum with fields listed below.
ANY("ANY")
NONE("NONE")
RECOVERY("RECOVERY")
SSO("SSO")
This is a newly created interface with methods listed below.
Authenticator activate()
Authenticator deactivate()
Date getCreated()
String getId()
String getKey()
Date getLastUpdated()
Map<String, Object> getLinks()
String getName()
AuthenticatorSettings getSettings()
AuthenticatorStatus getStatus()
AuthenticatorType getType()
Authenticator setKey(String key)
Authenticator setName(String name)
Authenticator setSettings(AuthenticatorSettings settings)
Authenticator setStatus(AuthenticatorStatus status)
Authenticator setType(AuthenticatorType type)
This is a newly created interface with methods listed below.
AllowedForEnum getAllowedFor()
Integer getTokenLifetimeInMinutes()
AuthenticatorSettings setAllowedFor(AllowedForEnum allowedFor)
AuthenticatorSettings setTokenLifetimeInMinutes(Integer tokenLifetimeInMinutes)
This is a newly created enum with fields listed below.
ACTIVE("ACTIVE")
INACTIVE("INACTIVE")
This is a newly created enum with fields listed below.
APP("APP")
EMAIL("EMAIL")
PASSWORD("PASSWORD")
PHONE("PHONE")
SECURITY_KEY("SECURITY_KEY")
SECURITY_QUESTION("SECURITY_QUESTION")
This is a newly created interface with methods listed below.
DomainList getDomains()
DomainListResponse setDomains(DomainList domains)
This is a newly created interface with methods listed below.
String getCreated()
GroupSchemaDefinitions getDefinitions()
String getDescription()
String getId()
String getLastUpdated()
Map<String, Object> getLinks()
String getName()
UserSchemaProperties getProperties()
String getSchema()
String getTitle()
String getType()
GroupSchema setDefinitions(GroupSchemaDefinitions definitions)
GroupSchema setDescription(String description)
GroupSchema setTitle(String title)
This is a newly created interface with methods listed below.
String getDescription()
List<String> getEnum()
String getExternalName()
String getExternalNamespace()
UserSchemaAttributeItems getItems()
UserSchemaAttributeMaster getMaster()
Integer getMaxLength()
Integer getMinLength()
String getMutability()
List<UserSchemaAttributeEnum> getOneOf()
List<UserSchemaAttributePermission> getPermissions()
Boolean getRequired()
UserSchemaAttributeScope getScope()
String getTitle()
UserSchemaAttributeType getType()
UserSchemaAttributeUnion getUnion()
String getUnique()
GroupSchemaAttribute setDescription(String description)
GroupSchemaAttribute setEnum(List<String> _enum)
GroupSchemaAttribute setExternalName(String externalName)
GroupSchemaAttribute setExternalNamespace(String externalNamespace)
GroupSchemaAttribute setItems(UserSchemaAttributeItems items)
GroupSchemaAttribute setMaster(UserSchemaAttributeMaster master)
GroupSchemaAttribute setMaxLength(Integer maxLength)
GroupSchemaAttribute setMinLength(Integer minLength)
GroupSchemaAttribute setMutability(String mutability)
GroupSchemaAttribute setOneOf(List<UserSchemaAttributeEnum> oneOf)
GroupSchemaAttribute setPermissions(List<UserSchemaAttributePermission> permissions)
GroupSchemaAttribute setRequired(Boolean required)
GroupSchemaAttribute setScope(UserSchemaAttributeScope scope)
GroupSchemaAttribute setTitle(String title)
GroupSchemaAttribute setType(UserSchemaAttributeType type)
GroupSchemaAttribute setUnion(UserSchemaAttributeUnion union)
GroupSchemaAttribute setUnique(String unique)
This is a newly created interface with methods listed below.
String getId()
GroupSchemaBaseProperties getProperties()
List<String> getRequired()
String getType()
GroupSchemaBase setProperties(GroupSchemaBaseProperties properties)
GroupSchemaBase setRequired(List<String> required)
GroupSchemaBase setType(String type)
This is a newly created interface with methods listed below.
GroupSchemaAttribute getDescription()
GroupSchemaAttribute getName()
GroupSchemaBaseProperties setDescription(GroupSchemaAttribute description)
GroupSchemaBaseProperties setName(GroupSchemaAttribute name)
This is a newly created interface with methods listed below.
String getId()
Map<String, GroupSchemaAttribute> getProperties()
List<String> getRequired()
String getType()
GroupSchemaCustom setProperties(Map<String, GroupSchemaAttribute> properties)
GroupSchemaCustom setRequired(List<String> required)
GroupSchemaCustom setType(String type)
This is a newly created interface with methods listed below.
GroupSchemaBase getBase()
GroupSchemaCustom getCustom()
GroupSchemaDefinitions setBase(GroupSchemaBase base)
GroupSchemaDefinitions setCustom(GroupSchemaCustom custom)
Below enum value has been changed.
CUSTOM_URL_DOMAIN("CUSTOM_URL_DOMAIN")
changed toCUSTOM_URL("CUSTOM_URL")
Below methods have undergone a signature change.
TokenTypeEnum getTokenType()
signature changed toString getTokenType()
SocialAuthToken setTokenType(TokenTypeEnum tokenType)
signature changed toSocialAuthToken setTokenType(String tokenType)
The Enum com.okta.sdk.resource.identity.provider.SocialAuthToken$TokenTypeEnum
has been removed.
This is a newly created enum with fields listed below.
BILLING("BILLING")
TECHNICAL("TECHNICAL")
This is a newly created interface with methods listed below.
OrgContactType getContactType()
OrgContactTypeObj setContactType(OrgContactType contactType)
This is a newly created interface with methods listed below.
Boolean getOptOutEmailUsers()
OrgOktaCommunicationSetting optInUsersToOktaCommunicationEmails()
OrgOktaCommunicationSetting optOutUsersFromOktaCommunicationEmails()
This is a newly created enum with fields listed below.
DISABLED("DISABLED")
ENABLED("ENABLED")
This is a newly created interface with methods listed below.
OrgOktaSupportSettingsObj extendOktaSupport()
Date getExpiration()
OrgOktaSupportSetting getSupport()
OrgOktaSupportSettingsObj grantOktaSupport()
OrgOktaSupportSettingsObj revokeOktaSupport()
This is a newly created interface with methods listed below.
Boolean getShowEndUserFooter()
OrgPreferences hideEndUserFooter()
OrgPreferences showEndUserFooter()
This is a newly created interface with methods listed below.
String getAddress1()
String getAddress2()
String getCity()
String getCompanyName()
String getCountry()
Date getCreated()
String getEndUserSupportHelpURL()
Date getExpiresAt()
String getId()
Date getLastUpdated()
String getPhoneNumber()
String getPostalCode()
String getState()
String getStatus()
String getSubdomain()
String getSupportPhoneNumber()
String getWebsite()
OrgSetting partialUpdate()
OrgSetting setAddress1(String address1)
OrgSetting setAddress2(String address2)
OrgSetting setCity(String city)
OrgSetting setCompanyName(String companyName)
OrgSetting setCountry(String country)
OrgSetting setEndUserSupportHelpURL(String endUserSupportHelpURL)
OrgSetting setPhoneNumber(String phoneNumber)
OrgSetting setPostalCode(String postalCode)
OrgSetting setState(String state)
OrgSetting setSupportPhoneNumber(String supportPhoneNumber)
OrgSetting setWebsite(String website)
OrgSetting update()
This is a newly created interface with methods listed below.
String getUserId()
UserIdString setUserId(String userId)
Below enum value has been changed.
GROUP_MEMBERSHIP_ADMIN("GROUP_MEMBERSHIP_ADMIN")
This is a newly created interface with methods listed below.
Role getRole(String roleId)
Version 5.0.0 of this SDK introduces a number of breaking changes from previous versions. In addition to many new classes/interfaces, some existing classes/interfaces are no longer backward compatible due to method renaming and signature changes.
Below methods have been added.
Domain createDomain(Domain domain)
NetworkZone createNetworkZone(NetworkZone zone)
void deleteDomain(String domainId)
ThreatInsightConfiguration getCurrentConfiguration()
Domain getDomain(String domainId)
NetworkZone getNetworkZone(String zoneId)
ProfileMapping getProfileMapping(String mappingId)
DomainList listDomains()
NetworkZoneList listNetworkZones(String filter)
NetworkZoneList listNetworkZones()
ProfileMappingList listProfileMappings(String sourceId, String targetId)
ProfileMappingList listProfileMappings()
Domain verifyDomain(String domainId)
Below methods have been added.
ApplicationSettingsNotes getNotes()
ApplicationSettings setNotes(ApplicationSettingsNotes notes)
This is a newly created interface with methods listed below.
String getAdmin()
String getEnduser()
ApplicationSettingsNotes setAdmin(String admin)
ApplicationSettingsNotes setEnduser(String enduser)
Below methods have been added.
void activate()
void deactivate()
Below methods have been added.
List<SignOnInlineHook> getInlineHooks()
SamlApplicationSettingsSignOn setInlineHooks(List<SignOnInlineHook> inlineHooks)
This is a newly created interface with methods listed below.
String getId()
SignOnInlineHook setId(String hookId)
Below methods have been added.
void activate(String authServerId)
void deactivate(String authServerId)
Below methods have undergone a signature change.
void activate()
signature changed tovoid activate(String authServerId)
void deactivate()
signature changed tovoid deactivate(String authServerId)
Below methods have been added.
TokenAuthorizationServerPolicyRuleActionInlineHook getInlineHook()
TokenAuthorizationServerPolicyRuleAction setInlineHook(TokenAuthorizationServerPolicyRuleActionInlineHook inlineHook)
Package com.okta.sdk.resource.authorization.server.policy.TokenAuthorizationServerPolicyRuleActionInlineHook
This is a newly created interface with methods listed below.
String getId()
TokenAuthorizationServerPolicyRuleActionInlineHook setId(String hookId)
This is a newly created interface with methods listed below.
String getExpiration()
String getFqdn()
DNSRecordType getRecordType()
List<String> getValues()
DNSRecord setExpiration(String exp)
DNSRecord setFqdn(String fqdn)
DNSRecord setRecordType(DNSRecordType recordType)
DNSRecord setValues(List<String> values)
This is a newly created enum with fields listed below.
CNAME("CNAME")
TXT("TXT")
This is a newly created interface with methods listed below.
DomainCertificateSourceType getCertificateSourceType()
List<DNSRecord> getDnsRecords()
String getDomain()
String getId()
DomainCertificateMetadata getPublicCertificate()
DomainValidationStatus getValidationStatus()
Domain setCertificateSourceType(DomainCertificateSourceType value)
Domain setDnsRecords(List<DNSRecord> records)
Domain setDomain(String domain)
Domain setPublicCertificate(DomainCertificateMetadata value)
Domain setValidationStatus(DomainValidationStatus status)
This is a newly created interface with methods listed below.
void createCertificate(String cert)
String getCertificate()
String getCertificateChain()
String getPrivateKey()
DomainCertificateType getType()
DomainCertificate setCertificate(String cert)
DomainCertificate setCertificateChain(String certificateChain)
DomainCertificate setPrivateKey(String privateKey)
DomainCertificate setType(DomainCertificateType value)
This is a newly created interface with methods listed below.
String getExpiration()
String getFingerprint()
String getSubject()
DomainCertificateMetadata setExpiration(String exp)
DomainCertificateMetadata setFingerprint(String fingerprint)
DomainCertificateMetadata setSubject(String subject)
This is a newly created enum with field listed below.
MANUAL("MANUAL")
This is a newly created enum with field listed below.
PEM("PEM")
This is a newly created enum with fields listed below.
COMPLETED("COMPLETED")
IN_PROGRESS("IN_PROGRESS")
NOT_STARTED("NOT_STARTED")
VERIFIED("VERIFIED")
Below methods has been added.
void delete(Boolean removeUsers)
This is a newly created interface with methods listed below.
NetworkZone activate()
NetworkZone deactivate()
void delete()
List<String> getAsns()
Date getCreated()
List<NetworkZoneAddress> getGateways()
String getId()
Date getLastUpdated()
Map<String, Object> getLinks()
List<NetworkZoneLocation> getLocations()
String getName()
List<NetworkZoneAddress> getProxies()
String getProxyType()
NetworkZoneStatus getStatus()
Boolean getSystem()
NetworkZoneType getType()
NetworkZoneUsage getUsage()
NetworkZone setAsns(List<String> asns)
NetworkZone setGateways(List<NetworkZoneAddress> gateways)
NetworkZone setLocations(List<NetworkZoneLocation> locations)
NetworkZone setName(String name)
NetworkZone setProxies(List<NetworkZoneAddress> proxies)
NetworkZone setProxyType(String proxyType)
NetworkZone setStatus(NetworkZoneStatus status)
NetworkZone setSystem(Boolean system)
NetworkZone setType(NetworkZoneType type)
NetworkZone setUsage(NetworkZoneUsage usage)
NetworkZone update()
This is a newly created interface with methods listed below.
NetworkZoneAddressType getType()
String getValue()
NetworkZoneAddress setType(NetworkZoneAddressType type)
NetworkZoneAddress setValue(String value)
This is a newly created enum with fields listed below.
CIDR("CIDR")
RANGE("RANGE")
This is a newly created interface with methods listed below.
String getCountry()
String getRegion()
NetworkZoneLocation setCountry(String country)
NetworkZoneLocation setRegion(String region)
This is a newly created enum with fields listed below.
ACTIVE("ACTIVE")
INACTIVE("INACTIVE")
This is a newly created enum with fields listed below.
DYNAMIC("DYNAMIC")
IP("IP")
This is a newly created enum with fields listed below.
BLOCKLIST("BLOCKLIST")
POLICY("POLICY")
Below methods have been added.
PolicyRuleActions getActions()
PolicyRuleConditions getConditions()
String getName()
PolicyRule setActions(PolicyRuleActions actions)
PolicyRule setConditions(PolicyRuleConditions conditions)
PolicyRule setName(String name)
This is a newly created interface with methods listed below.
PolicyRuleActionsEnroll getEnroll()
PasswordPolicyRuleAction getPasswordChange()
PasswordPolicyRuleAction getSelfServicePasswordReset()
PasswordPolicyRuleAction getSelfServiceUnlock()
OktaSignOnPolicyRuleSignonActions getSignon()
PolicyRuleActions setEnroll(PolicyRuleActionsEnroll enroll)
PolicyRuleActions setPasswordChange(PasswordPolicyRuleAction passwordChange)
PolicyRuleActions setSelfServicePasswordReset(PasswordPolicyRuleAction selfServicePasswordReset)
PolicyRuleActions setSelfServiceUnlock(PasswordPolicyRuleAction selfServiceUnlock)
PolicyRuleActions setSignon(OktaSignOnPolicyRuleSignonActions signon)
This is a newly created interface with methods listed below.
PolicyRuleActionsEnrollSelf getSelf()
PolicyRuleActionsEnroll setSelf(PolicyRuleActionsEnrollSelf self)
This is a newly created enum with fields listed below.
CHALLENGE("CHALLENGE")
LOGIN("LOGIN")
NEVER("NEVER")
This is a newly created interface with methods listed below.
String getId()
Map<String, Object> getLinks()
Map<String, ProfileMappingProperty> getProperties()
ProfileMappingSource getSource()
ProfileMappingSource getTarget()
ProfileMapping setSource(ProfileMappingSource source)
ProfileMapping setTarget(ProfileMappingSource target)
ProfileMapping update(ProfileMapping profileMapping)
This is a newly created interface with methods listed below.
String getExpression()
ProfileMappingPropertyPushStatus getPushStatus()
ProfileMappingProperty setExpression(String expression)
ProfileMappingProperty setPushStatus(ProfileMappingPropertyPushStatus pushStatus)
This is a newly created enum with fields listed below.
DONT_PUSH("DONT_PUSH")
PUSH("PUSH")
This is a newly created interface with methods listed below.
String getId()
Map<String, Object> getLinks()
String getName()
String getType()
This is a newly created interface with methods listed below.
String getAction()
Date getCreated()
List<String> getExcludeZones()
Date getLastUpdated()
Map<String, Object> getLinks()
ThreatInsightConfiguration setAction(String action)
ThreatInsightConfiguration setExcludeZones(List<String> excludeZones)
ThreatInsightConfiguration update()
Enum FactorType
has the below new field definition:
HOTP("HOTP")
Below method has undergone a signature change.
User getProperties()
signature changed toUserSchemaProperties getProperties()
Below methods have undergone a signature change.
String getScope()
signature changed toUserSchemaAttributeScope getScope()
String getType()
signature changed toUserSchemaAttributeType getType()
UserSchemaAttribute setScope(String scope)
signature changed toUserSchemaAttribute setScope(UserSchemaAttributeScope scope)
UserSchemaAttribute setType(String type)
signature changed toUserSchemaAttribute setType(UserSchemaAttributeType type)
Below methods have been added.
List<String> getEnum()
String getExternalName()
String getExternalNamespace()
UserSchemaAttributeItems getItems()
List<UserSchemaAttributeEnum> getOneOf()
String getPattern()
UserSchemaAttributeUnion getUnion()
String getUnique()
UserSchemaAttribute setEnum(List<String> value)
UserSchemaAttribute setExternalName(String externalName)
UserSchemaAttribute setExternalNamespace(String externalNamespace)
UserSchemaAttribute setItems(UserSchemaAttributeItems items)
UserSchemaAttribute setOneOf(List<UserSchemaAttributeEnum> oneOf)
UserSchemaAttribute setPattern(String pattern)
UserSchemaAttribute setUnion(UserSchemaAttributeUnion union)
UserSchemaAttribute setUnique(String unique)
This is a newly created interface with methods listed below.
String getConst()
String getTitle()
UserSchemaAttributeEnum setConst(String value)
UserSchemaAttributeEnum setTitle(String title)
This is a newly created interface with methods listed below.
List<String> getEnum()
List<UserSchemaAttributeEnum> getOneOf()
String getType()
UserSchemaAttributeItems setEnum(List<String> values)
UserSchemaAttributeItems setOneOf(List<UserSchemaAttributeEnum> oneOf)
UserSchemaAttributeItems setType(String type)
Below methods have undergone a signature change.
String getType()
signature changed toUserSchemaAttributeMasterType getType()
UserSchemaAttributeMaster setType(String type)
signature changed toUserSchemaAttributeMaster setType(UserSchemaAttributeMasterType type)
Below methods have been added.
List<UserSchemaAttributeMasterPriority> getPriority()
UserSchemaAttributeMaster setPriority(List<UserSchemaAttributeMasterPriority> priority)
This is a newly created interface with methods listed below.
String getType()
String getValue()
UserSchemaAttributeMasterPriority setType(String type)
UserSchemaAttributeMasterPriority setValue(String value)
This is a newly created enum with fields listed below.
OKTA("OKTA")
OVERRIDE("OVERRIDE")
PROFILE_MASTER("PROFILE_MASTER")
This is a newly created enum with fields listed below.
NONE("NONE")
SELF("SELF")
This is a newly created enum with fields listed below.
ARRAY("ARRAY")
BOOLEAN("BOOLEAN")
INTEGER("INTEGER")
NUMBER("NUMBER")
STRING("STRING")
This is a newly created enum with fields listed below.
DISABLE("DISABLE")
ENABLE("ENABLE")
This is a newly created interface with methods listed below.
UserSchemaPropertiesProfile getProfile()
UserSchemaProperties setProfile(UserSchemaPropertiesProfile profile)
This is a newly created interface with methods listed below.
List<UserSchemaPropertiesProfileItem> getAllOf()
UserSchemaPropertiesProfile setAllOf(List<UserSchemaPropertiesProfileItem> allOf)
This is a newly created interface with methods listed below.
String getRef()
UserSchemaPropertiesProfileItem setRef(String ref)
Version 4.0.0 of this SDK introduces a number of breaking changes from previous versions. In addition to many new classes/interfaces, some existing classes/interfaces are no longer backward compatible due to method renaming and signature changes.
Below methods have undergone a signature change.
User createUser(User user, Boolean active, Boolean provider, UserNextLogin nextLogin)
signature changed toUser createUser(CreateUserRequest createUserRequest, Boolean active, Boolean provider, UserNextLogin nextLogin)
User createUser(User user)
signature changed toUser createUser(CreateUserRequest createUserRequest)
- First argument type changed from
User
toCreateUserRequest
- First argument type changed from
Below methods have been added.
UserSchema updateApplicationUserProfile(String appInstanceId, UserSchema userSchema)
UserSchema updateApplicationUserProfile(String appInstanceId)
UserSchema updateUserProfile(String schemaId, UserSchema userSchema)
Below method has been removed.
ForgotPasswordResponse apiV1UsersUserIdCredentialsForgotPasswordPost(String userId)
One of below listed methods could be used instead:
User.forgotPasswordGenerateOneTimeToken(Boolean sendEmail)
User.forgotPasswordGenerateOneTimeToken()
User.forgotPasswordSetNewPassword(UserCredentials userCredentials, Boolean sendEmail)
User.forgotPasswordSetNewPassword(UserCredentials userCredentials)
Class com.okta.sdk.resource.user.UserType
moved to com.okta.sdk.resource.user.type.UserType
Class com.okta.sdk.resource.user.UserTypeList
moved to com.okta.sdk.resource.user.type.UserTypeList
Below methods have been added.
JsonWebKey setAlg(String alg)
JsonWebKey setCreated(Date created)
JsonWebKey setE(String e)
JsonWebKey setExpiresAt(Date expiresAt)
JsonWebKey setKeyOps(List<String> keyOps)
JsonWebKey setKid(String kid)
JsonWebKey setKty(String kty)
JsonWebKey setLastUpdated(Date lastUpdated)
JsonWebKey setN(String n)
JsonWebKey setStatus(String status)
JsonWebKey setUse(String use)
JsonWebKey setX5t(String x5t)
JsonWebKey setX5tS256(String x5tS256)
JsonWebKey setX5u(String x5u)
The interface has been renamed in the interest of naming consistency.
- From
OIdCApplicationBuilder
toOIDCApplicationBuilder
Below method has been added.
OIDCApplicationBuilder setJwks(List<JsonWebKey> jsonWebKeyList)
This is a newly created interface with methods listed below.
List<String> getDefaultScope()
OpenIdConnectApplicationIdpInitiatedLogin setDefaultScope(List<String> defaultScope)
String getMode()
OpenIdConnectApplicationIdpInitiatedLogin setMode(String mode)
Below methods have been added.
OpenIdConnectApplicationIdpInitiatedLogin getIdpInitiatedLogin()
OpenIdConnectApplicationSettingsClient setIdpInitiatedLogin(OpenIdConnectApplicationIdpInitiatedLogin idpInitiatedLogin)
Below methods have been added.
SingleLogout getSlo()
SpCertificate getSpCertificate()
SamlApplicationSettingsSignOn setSlo(SingleLogout slo)
SamlApplicationSettingsSignOn setSpCertificate(SpCertificate spCertificate)
The Interface com.okta.sdk.resource.application.SamlApplicationV1
has been removed.
The Interface com.okta.sdk.resource.application.SamlApplication
should be used instead.
This is a newly created interface with methods listed below.
Boolean getEnabled()
String getIssuer()
String getLogoutUrl()
SingleLogout setEnabled(Boolean enabled)
SingleLogout setIssuer(String issuer)
SingleLogout setLogoutUrl(String logoutUrl)
This is a newly created interface with methods listed below.
List<String> getX5c()
SpCertificate setX5c(List<String> x5c)
Below method has been renamed in the interest of naming consistency.
- Renamed
deletePolicy
todelete
Below method has undergone a signature change.
void deletePolicyRule(String ruleId)
signature changed tovoid deletePolicyRule(String authServerId, String ruleId)
Below method has undergone a signature change and renamed in the interest of naming consistency.
AuthorizationServerPolicy updatePolicy(String authServerId, AuthorizationServerPolicy authServerPolicy)
changed toAuthorizationServerPolicy update(String authServerId)
Below method has been renamed in the interest of naming consistency.
- Renamed
deletePolicyRule
todelete
Below methods have been added.
String getMethod()
InlineHookChannelConfig setMethod(String method)
Below methods have been removed.
String getName()
LinkedObject.getPrimary().getName()
should be used instead
LinkedObject setName(String name)
LinkedObject.getPrimary().setName()
should be used instead
Enum LogCredentialProvider
has the below new field definition:
OKTA_CREDENTIAL_PROVIDER("OKTA_CREDENTIAL_PROVIDER")
Interface com.okta.sdk.resource.policy.MDMFrameworks
moved to com.okta.sdk.resource.policy.DevicePolicyRuleConditionPlatform$SupportedMDMFrameworksEnum
Interface com.okta.sdk.resource.policy.Platforms
moved to com.okta.sdk.resource.policy.DevicePolicyRuleConditionPlatform$TypesEnum
Below method has been added
PushUserFactor setExpiresAt(Date expiresAt)
Below method has been renamed in the interest of naming consistency.
- Renamed
deleteFactor
todelete
This is a newly created interface with methods listed below.
String getCreated()
UserSchemaDefinitions getDefinitions()
String getId()
String getLastUpdated()
Map getLinks()
String getName()
Map getProperties()
String getSchema()
String getTitle()
String getType()
UserSchema setDefinitions(UserSchemaDefinitions definitions)
UserSchema setTitle(String title)
This is a newly created interface with methods listed below.
String getDescription()
UserSchemaAttributeMaster getMaster()
Integer getMaxLength()
Integer getMinLength()
String getMutability()
List getPermissions()
Boolean getRequired()
String getScope()
String getTitle()
String getType()
UserSchemaAttribute setDescription(String description)
UserSchemaAttribute setMaster(UserSchemaAttributeMaster master)
UserSchemaAttribute setMaxLength(Integer maxLength)
UserSchemaAttribute setMinLength(Integer minLength)
UserSchemaAttribute setMutability(String mutability)
UserSchemaAttribute setPermissions(List permissions)
UserSchemaAttribute setRequired(Boolean required)
UserSchemaAttribute setScope(String scope)
UserSchemaAttribute setTitle(String title)
UserSchemaAttribute setType(String type)
This is a newly created interface with methods listed below.
String getType()
UserSchemaAttributeMaster setType(String type)
This is a newly created interface with methods listed below.
String getAction()
String getPrincipal()
UserSchemaAttributePermission setAction(String action)
UserSchemaAttributePermission setPrincipal(String principal)
This is a newly created interface with methods listed below.
String getId()
UserSchemaBaseProperties getProperties()
List<String> getRequired()
String getType()
UserSchemaBase setProperties(UserSchemaBaseProperties properties)
UserSchemaBase setRequired(List<String> required)
UserSchemaBase setType(String type)
This is a newly created interface with methods listed below.
UserSchemaAttribute getCity()
UserSchemaAttribute getCostCenter()
UserSchemaAttribute getCountryCode()
UserSchemaAttribute getDepartment()
UserSchemaAttribute getDisplayName()
UserSchemaAttribute getDivision()
UserSchemaAttribute getEmail()
UserSchemaAttribute getEmployeeNumber()
UserSchemaAttribute getFirstName()
UserSchemaAttribute getHonorificPrefix()
UserSchemaAttribute getHonorificSuffix()
UserSchemaAttribute getLastName()
UserSchemaAttribute getLocale()
UserSchemaAttribute getLogin()
UserSchemaAttribute getManager()
UserSchemaAttribute getManagerId()
UserSchemaAttribute getMiddleName()
UserSchemaAttribute getMobilePhone()
UserSchemaAttribute getNickName()
UserSchemaAttribute getOrganization()
UserSchemaAttribute getPostalAddress()
UserSchemaAttribute getPreferredLanguage()
UserSchemaAttribute getPrimaryPhone()
UserSchemaAttribute getProfileUrl()
UserSchemaAttribute getSecondEmail()
UserSchemaAttribute getState()
UserSchemaAttribute getStreetAddress()
UserSchemaAttribute getTimezone()
UserSchemaAttribute getTitle()
UserSchemaAttribute getUserType()
UserSchemaAttribute getZipCode()
UserSchemaBaseProperties setCity(UserSchemaAttribute city)
UserSchemaBaseProperties setCostCenter(UserSchemaAttribute costCenter)
UserSchemaBaseProperties setCountryCode(UserSchemaAttribute countryCode)
UserSchemaBaseProperties setDepartment(UserSchemaAttribute department)
UserSchemaBaseProperties setDisplayName(UserSchemaAttribute displayName)
UserSchemaBaseProperties setDivision(UserSchemaAttribute division)
UserSchemaBaseProperties setEmail(UserSchemaAttribute email)
UserSchemaBaseProperties setEmployeeNumber(UserSchemaAttribute employeeNumber)
UserSchemaBaseProperties setFirstName(UserSchemaAttribute firstName)
UserSchemaBaseProperties setHonorificPrefix(UserSchemaAttribute honorificPrefix)
UserSchemaBaseProperties setHonorificSuffix(UserSchemaAttribute honorificSuffix)
UserSchemaBaseProperties setLastName(UserSchemaAttribute lastName)
UserSchemaBaseProperties setLocale(UserSchemaAttribute locale)
UserSchemaBaseProperties setLogin(UserSchemaAttribute login)
UserSchemaBaseProperties setManager(UserSchemaAttribute manager)
UserSchemaBaseProperties setManagerId(UserSchemaAttribute managerId)
UserSchemaBaseProperties setMiddleName(UserSchemaAttribute middleName)
UserSchemaBaseProperties setMobilePhone(UserSchemaAttribute mobilePhone)
UserSchemaBaseProperties setNickName(UserSchemaAttribute nickName)
UserSchemaBaseProperties setOrganization(UserSchemaAttribute organization)
UserSchemaBaseProperties setPostalAddress(UserSchemaAttribute postalAddress)
UserSchemaBaseProperties setPreferredLanguage(UserSchemaAttribute preferredLanguage)
UserSchemaBaseProperties setPrimaryPhone(UserSchemaAttribute primaryPhone)
UserSchemaBaseProperties setProfileUrl(UserSchemaAttribute profileUrl)
UserSchemaBaseProperties setSecondEmail(UserSchemaAttribute secondEmail)
UserSchemaBaseProperties setState(UserSchemaAttribute state)
UserSchemaBaseProperties setStreetAddress(UserSchemaAttribute streetAddress)
UserSchemaBaseProperties setTimezone(UserSchemaAttribute timezone)
UserSchemaBaseProperties setTitle(UserSchemaAttribute title)
UserSchemaBaseProperties setUserType(UserSchemaAttribute userType)
UserSchemaBaseProperties setZipCode(UserSchemaAttribute zipCode)
This is a newly created interface with methods listed below.
UserSchemaBase getBase()
UserSchemaPublic getCustom()
UserSchemaDefinitions setBase(UserSchemaBase base)
UserSchemaDefinitions setCustom(UserSchemaPublic custom)
This is a newly created interface with methods listed below.
String getId()
Map<String, Object> getProperties()
List<String> getRequired()
String getType()
UserSchemaPublic setProperties(Map<String, Object> properties)
UserSchemaPublic setRequired(List<String> required)
UserSchemaPublic setType(String type)
Below method has undergone a signature change in the interest of naming consistency.
void addAllAppsAsTargetToRole()
tovoid addAllAppsAsTarget(String roleId)
void deleteFactor()
tovoid deleteFactor(String factorId)
Below methods have been added.
ForgotPasswordResponse forgotPasswordGenerateOneTimeToken(Boolean sendEmail)
ForgotPasswordResponse forgotPasswordGenerateOneTimeToken()
ForgotPasswordResponse forgotPasswordSetNewPassword(UserCredentials userCredentials, Boolean sendEmail)
ForgotPasswordResponse forgotPasswordSetNewPassword(UserCredentials userCredentials)
Below method has undergone a signature change.
UserBuilder setProvider(Boolean provider)
signature changed toUserBuilder setProvider(AuthenticationProvider provider)
Version 3.0.0 of this SDK introduces a number of breaking changes from previous versions. In addition to many new classes/interfaces, some existing classes/interfaces are no longer backward compatible due to method renaming and signature changes.
Custom HOTP Factor is supported now. Define a separate Policy model for Authorization Servers. Define a separate Policy Rule model for Authorization Servers. SAML Multiple ACS URLs is supported now.
Below method has been added.
void deleteIdentityProviderKey(String keyId)
Below methods have undergone a signature change.
-
listGroups(String groupName, String filter)
signature changed tolistGroups(String groupName, String filter, String expand)
- New param
expand
has been added. It isoptional
and would need to be specified only while using search queries.
- New param
-
listPolicies(String type)
return type changed fromcom.okta.sdk.resource.policy.PolicyList
tocom.okta.sdk.resource.authorization.server.AuthorizationServerPolicyList
The method ClientBuilder setPrivateKey(String privateKey)
has been overloaded.
- The method
ClientBuilder setPrivateKey(String privateKey)
could be used to set a path to private key PEM file. - Also, the method
ClientBuilder setPrivateKey(String privateKey)
could be used to set full PEM payload. - The method
ClientBuilder setPrivateKey(Path privateKeyPath)
allows setting a path to private key PEM file. - The method
ClientBuilder setPrivateKey(InputStream privateKeyStream)
allows setting an InputStream with private key PEM file content. - The method
ClientBuilder setPrivateKey(PrivateKey privateKey)
allows setting the privateKey instance.
This is a newly created interface with methods listed below.
Integer getIndex()
AcsEndpoint setIndex(Integer index)
String getUrl()
AcsEndpoint setUrl(String url)
- Added
ApplicationGroupAssignment createApplicationGroupAssignment(String groupId)
method.- This method allows assigning a group to an Application.
Below methods have been added.
OpenIdConnectApplicationSettingsRefreshToken getRefreshToken()
OpenIdConnectApplicationSettingsRefreshToken setRefreshToken(OpenIdConnectApplicationSettingsRefreshToken refreshToken)
OpenIdConnectApplicationSettingsClientKeys getJwks()
OpenIdConnectApplicationSettingsClient setJwks(OpenIdConnectApplicationSettingsClientKeys jwks)
This is a newly created interface with methods listed below.
JsonWebKeyList getKeys()
OpenIdConnectApplicationSettingsClientKeys setKeys(JsonWebKeyList keys)
This is a newly created interface with methods listed below.
Integer getLeeway()
OpenIdConnectRefreshTokenRotationType getRotationType()
OpenIdConnectApplicationSettingsRefreshToken setLeeway(Integer leeway)
OpenIdConnectApplicationSettingsRefreshToken setRotationType(OpenIdConnectRefreshTokenRotationType rotationType)
With the introduction of enum type OpenIdConnectRefreshTokenRotationType
,
operations getRotationType()
and setRotationType(OpenIdConnectRefreshTokenRotationType rotationType)
will use this new enum type.
Enum OpenIdConnectRefreshTokenRotationType
has the below fields defined:
ROTATE("rotate")
STATIC("static")
Below methods have been added.
List getAcsEndpoints()
Boolean getAllowMultipleAcsEndpoints()
SamlApplicationSettingsSignOn setAcsEndpoints(List<AcsEndpoint> acsEndpoints)
SamlApplicationSettingsSignOn setAllowMultipleAcsEndpoints(Boolean allowMultipleAcsEndpoints)
This is a newly created interface with methods listed below.
SamlApplicationSettings getSettings()
SamlApplicationV1 setSettings(SamlApplicationSettings settings)
Below methods have been added.
String getFilterType()
String getFilterValue()
SamlAttributeStatement setFilterType(String filterType)
SamlAttributeStatement setFilterValue(String filterValue)
Below methods have undergone a signature change.
createPolicy(com.okta.sdk.resource.policy.Policy policy)
signature changed tocreatePolicy(com.okta.sdk.resource.authorization.server.AuthorizationServerPolicy policy)
, return value type changed fromcom.okta.sdk.resource.policy.Policy
tocom.okta.sdk.resource.authorization.server.AuthorizationServerPolicy
getPolicy(String policyId)
return type changed fromcom.okta.sdk.resource.policy.Policy
tocom.okta.sdk.resource.authorization.server.AuthorizationServerPolicy
listPolicies()
return type changed fromcom.okta.sdk.resource.policy.PolicyList
tocom.okta.sdk.resource.authorization.server.AuthorizationServerPolicyList
updatePolicy(String policyId, com.okta.sdk.resource.policy.Policy policy)
signature changed toupdatePolicy(String policyId, com.okta.sdk.resource.authorization.server.AuthorizationServerPolicy policy)
, return value type changed fromcom.okta.sdk.resource.policy.Policy
tocom.okta.sdk.resource.authorization.server.AuthorizationServerPolicy
This is a newly created interface with methods listed below.
AuthorizationServerPolicyRule createPolicyRule(String authServerId, AuthorizationServerPolicyRule policyRule)
void deletePolicy(String policyId)
PolicyRuleConditions getConditions()
Date getCreated()
String getDescription()
Map<String, Object> getEmbedded()
String getId()
Date getLastUpdated()
Map<String, Object> getLinks()
String getName()
AuthorizationServerPolicyRule getPolicyRule(String authServerId, String ruleId)
Integer getPriority()
StatusEnum getStatus()
Boolean getSystem()
PolicyType getType()
AuthorizationServerPolicyRuleList listPolicyRules(String authServerId)
AuthorizationServerPolicy setConditions(PolicyRuleConditions conditions)
AuthorizationServerPolicy setDescription(String description)
AuthorizationServerPolicy setName(String name)
AuthorizationServerPolicy setPriority(Integer priority)
AuthorizationServerPolicy setStatus(StatusEnum status)
AuthorizationServerPolicy setSystem(Boolean system)
AuthorizationServerPolicy setType(PolicyType type)
AuthorizationServerPolicy updatePolicy(String policyId, AuthorizationServerPolicy policy)
With the introduction of enum type AuthorizationServerPolicy$StatusEnum
,
operations getStatus()
and setStatus(StatusEnum status)
will use this new enum type.
Enum StatusEnum
has below fields defined:
ACTIVE("ACTIVE")
INACTIVE("INACTIVE")
This is a newly created interface with methods listed below.
void activate()
void deactivate()
deletePolicyRule(String authServerId)
AuthorizationServerPolicyRuleActions getActions()
AuthorizationServerPolicyRuleConditions getConditions()
Date getCreated()
String getId()
Date getLastUpdated()
String getName()
Integer getPriority()
StatusEnum getStatus()
Boolean getSystem()
TypeEnum getType()
AuthorizationServerPolicyRule setActions(AuthorizationServerPolicyRuleActions actions)
AuthorizationServerPolicyRule setConditions(AuthorizationServerPolicyRuleConditions conditions)
AuthorizationServerPolicyRule setName(String name)
AuthorizationServerPolicyRule setPriority(Integer priority)
AuthorizationServerPolicyRule setStatus(StatusEnum status)
AuthorizationServerPolicyRule setSystem(Boolean system)
AuthorizationServerPolicyRule setType(TypeEnum type)
AuthorizationServerPolicyRule update(String authServerId)
With the introduction of enum type AuthorizationServerPolicyRule$StatusEnum
, operations getStatus()
and setStatus(StatusEnum status)
will use this new enum type.
Enum StatusEnum
has below fields defined:
ACTIVE("ACTIVE")
INACTIVE("INACTIVE")
This is a newly created interface with methods listed below.
TokenAuthorizationServerPolicyRuleAction getToken()
AuthorizationServerPolicyRuleActions setToken(TokenAuthorizationServerPolicyRuleAction token)
This is a newly created interface with methods listed below.
ClientPolicyCondition getClients()
GrantTypePolicyRuleCondition getGrantTypes()
PolicyPeopleCondition getPeople()
OAuth2ScopesMediationPolicyRuleCondition getScopes()
AuthorizationServerPolicyRuleConditions setClients(ClientPolicyCondition clients)
AuthorizationServerPolicyRuleConditions setGrantTypes(GrantTypePolicyRuleCondition grantTypes)
AuthorizationServerPolicyRuleConditions setPeople(PolicyPeopleCondition people)
AuthorizationServerPolicyRuleConditions setScopes(OAuth2ScopesMediationPolicyRuleCondition scopes)
This is a newly created interface with methods listed below.
Integer getAccessTokenLifetimeMinutes()
Integer getRefreshTokenLifetimeMinutes()
Integer getRefreshTokenWindowMinutes()
TokenAuthorizationServerPolicyRuleAction setAccessTokenLifetimeMinutes(Integer accessTokenLifetimeMinutes)
TokenAuthorizationServerPolicyRuleAction setRefreshTokenLifetimeMinutes(Integer refreshTokenLifetimeMinutes)
TokenAuthorizationServerPolicyRuleAction setRefreshTokenWindowMinutes(Integer refreshTokenWindowMinutes)
Below method has been removed.
deleteSigningKey(String keyId)
The Interface has been removed.
The Interface com.okta.sdk.resource.authorization.server.AuthorizationServerPolicyList
should be used instead.
This is a newly created interface with methods listed below.
String getFactorProfileId()
CustomHotpUserFactorProfile getProfile()
CustomHotpUserFactor setFactorProfileId(String factorProfileId)
CustomHotpUserFactor setProfile(CustomHotpUserFactorProfile profile)
This is a newly created interface with methods listed below.
String getSharedSecret()
CustomHotpUserFactorProfile setSharedSecret(String sharedSecret)
Below method has undergone a signature change.
getExpiresAt()
return type changed fromString
toDate
- The property's
expiresAt
type is a date-time string, so it becomes convenient to useDate
type
- The property's
Below methods have been renamed for the sake of clarity.
- Renamed
getWorkerFactor()
togetWorkFactor()
- Renamed
setWorkerFactor(Integer workFactor)
tosetWorkFactor(Integer workFactor)
Below methods have been added.
UserBuilder setType(UserType userType)
UserBuilder setType(String userTypeId)
UserBuilder usePasswordHookForImport()
UserBuilder usePasswordHookForImport(String type)
Version 2.0.0 of this SDK introduces a number of breaking changes from previous versions. In addition to many new classes/interfaces, some existing classes/interfaces are no longer backward compatible due to method renaming and signature changes.
This means that you will now have to start using the new *UserFactor
objects instead.
Below methods have been renamed for the sake of clarity.
- Renamed
createRule
tocreateGroupRule
- Renamed
getRule
togetGroupRule
- Renamed
listRules
tolistGroupRules
Below API has undergone a signature change.
listUsers(String q, String filter, String format, String search, String expand)
Signature changed tolistUsers(java.lang.String q, java.lang.String filter, java.lang.String search, java.lang.String sortBy, java.lang.String sortOrder)
Note that the params format
and expand
have been removed. New params sortBy
and sortOrder
have been added. These are optional and would need to be specified only while using search queries.
The API used to get log info has undergone a signature change (note the order swap of until
and since
parameters).
getLogs(String until, String since, String filter, String q, String sortOrder)
Signature changed togetLogs(Date since, Date until, String filter, String q, String sortOrder)
The API used to list the groups to which a user belongs, has undergone a signature change.
There is no need for supplying the expand
parameter anymore.
-
listGroups(String q, String filter, String expand)
Signature changed tolistGroups(String q, String filter)
- With this removal of
expand
parameter, the caller has two options of achieving the previous result: - Make a second API call to the Group API and fetch the results.
- You can call the Groups API endpoint (or any Okta management API endpoint) using a syntax like below example:
// List Groups API, see: https://developer.okta.com/docs/reference/api/groups/#list-groups GroupsList result = client.http() .addQueryParameter("expand", true) .get("/api/v1/groups", GroupsList.class);
- With this removal of
-
Note that the support for
expand
parameter might go away anytime in the future.
Below APIs have undergone a name change.
getTargetUrl
Renamed togetTargetURL
setTargetUrl
Renamed tosetTargetURL
With the introduction of enum type com.okta.sdk.resource.group.GroupType
, the get group type operation will now make
use of this new enum type instead of the String
type used earlier.
getType
Return type changed fromString
to an enumcom.okta.sdk.resource.group.GroupType
The properties allGroupsValid
& _embedded
were not used by the backend earlier and were always set to null
.
As part of this upgrade, we will remove it from the method signatures.
- Removed
getAllGroupsValid
andsetAllGroupsValid
(propertyallGroupsValid
is being removed; this option would be removed from future versions of Okta API) - Removed
getEmbedded
(property_embedded
is removed; this property is undocumented in Okta API and hence being removed) delete(Boolean removeUsers)
Signature changed todelete()
The API to get log credential provider used to return a list of objects of type LogCredentialProvider
earlier.
This is now fixed to return a single object of type LogCredentialProvider
.
getCredentialProvider
Return type changed fromList<com.okta.sdk.resource.log.LogCredentialProvider>
tocom.okta.sdk.resource.log.LogCredentialProvider
The API to get log credential type used to return a list of objects of type LogCredentialType
earlier.
This is now fixed to return a single object of type LogCredentialType
.
getCredentialType
Return type changed fromList<com.okta.sdk.resource.log.LogCredentialType>
tocom.okta.sdk.resource.log.LogCredentialType
There is no need of exposing setter for the read-only
property id
.
- Removed
setId
(propertyid
isread-only
)
The property tokenLifetimeSeconds
will not used by the backend going forward.
- Removed
getTokenLifetimeSeconds
&setTokenLifetimeSeconds
(propertytokenLifetimeSeconds
is removed)
With the introduction of enum type com.okta.sdk.resource.role.RoleType
, the getter/setter for role type operation will now make
use of this new enum type instead of the String
type used earlier.
getType
Return type changed fromString
to an enumcom.okta.sdk.resource.role.RoleType
setType
Param type changed fromString
to an enumcom.okta.sdk.resource.role.RoleType
The below method names have been refactored to be more apt:
- Renamed
addGroupTarget
toaddGroupTargetToRole
- Renamed
addRole
toassignRole
- Renamed
listGroupTargetsForRole
tolistGroupTargets
- Renamed
removeGroupTargetFromRole
toremoveGroupTarget
- Renamed
addFactor
toenrollFactor
- Renamed
listRoles
tolistAssignedRoles
The forgotPassword
method has been removed. Use resetPassword
instead to achieve the same functionality.
The endAllSessions
method has been removed. Use clearSessions
instead to achieve the same functionality.
Following methods have undergone a return type change inline with the refactoring of UserFactor*
objects as mentioned above.
listSupportedFactors
Return type changed fromcom.okta.sdk.resource.user.factor.FactorList
tocom.okta.sdk.resource.user.factor.UserFactorList
getFactor
Return type changed fromcom.okta.sdk.resource.user.factor.Factor
tocom.okta.sdk.resource.user.factor.UserFactor
listFactors
Return type changed fromcom.okta.sdk.resource.user.factor.FactorList
tocom.okta.sdk.resource.user.factor.UserFactorList
The expirePassword
Return type changed from com.okta.sdk.resource.user.TempPassword
to com.okta.sdk.resource.user.User
The reset password method will no longer need a provider argument.
resetPassword(String provider, Boolean sendEmail)
Signature changed toresetPassword(Boolean sendEmail)
The property emails
was not used by the backend and was always null
hitherto.
- Removed
getEmails
&setEmails
(propertyemails
was removed)
Below SDK classes/interfaces are deprecated and will be removed from this project.
These SDK classes were previously moved to okta-commons-java).
- com.okta.sdk.authc.credentials.ClientCredentialsProvider
- com.okta.sdk.client.Proxy
- com.okta.sdk.http.HttpMethod
- com.okta.sdk.http.HttpRequest
- com.okta.sdk.http.HttpRequestBuilder
- com.okta.sdk.http.HttpRequests
- com.okta.sdk.http.UserAgentProvider
- com.okta.sdk.lang.Assert
- com.okta.sdk.lang.Classes
- com.okta.sdk.lang.Collections
- com.okta.sdk.lang.Duration
- com.okta.sdk.lang.InstantiationException
- com.okta.sdk.lang.Instants
- com.okta.sdk.lang.Locales
- com.okta.sdk.lang.Objects
- com.okta.sdk.lang.Strings
- com.okta.sdk.lang.UnknownClassException