Interface Saml.Service
-
- All Superinterfaces:
Maskable
,ResultLimitable
,Service
- Enclosing class:
- Saml
@ApiService("SoftLayer_Account_Authentication_Saml") public static interface Saml.Service extends Service
- See Also:
- SoftLayer_Account_Authentication_Saml
-
-
Method Summary
Modifier and Type Method Description Saml.ServiceAsync
asAsync()
Get an async version of this serviceSaml
createObject(Saml templateObject)
Boolean
deleteObject()
Boolean
editObject(Saml templateObject)
Edit the object by passing in a modified instance of the objectAccount
getAccount()
The account associated with this saml configuration.List<Attribute>
getAttributes()
The saml attribute values for a SoftLayer customer account.String
getMetadata()
This method will return the service provider metadata in XML format.Saml
getObject()
void
setMask(Saml.Mask mask)
Saml.Mask
withMask()
Use the existing mask on this service or create it if not presentSaml.Mask
withNewMask()
Overwrite the existing mask on this service with a new one and return it-
Methods inherited from interface com.softlayer.api.ResultLimitable
getLastResponseTotalItemCount, getResultLimit, setResultLimit
-
-
-
-
Method Detail
-
asAsync
Saml.ServiceAsync asAsync()
Description copied from interface:Service
Get an async version of this service
-
withNewMask
Saml.Mask withNewMask()
Description copied from interface:Maskable
Overwrite the existing mask on this service with a new one and return it- Specified by:
withNewMask
in interfaceMaskable
-
withMask
Saml.Mask withMask()
Description copied from interface:Maskable
Use the existing mask on this service or create it if not present
-
setMask
void setMask(Saml.Mask mask)
-
createObject
@ApiMethod Saml createObject(Saml templateObject)
-
deleteObject
@ApiMethod(instanceRequired=true) Boolean deleteObject()
-
editObject
@ApiMethod(instanceRequired=true) Boolean editObject(Saml templateObject)
Edit the object by passing in a modified instance of the object
-
getMetadata
@ApiMethod(instanceRequired=true) String getMetadata()
This method will return the service provider metadata in XML format.
-
getObject
@ApiMethod(instanceRequired=true) Saml getObject()
-
getAccount
@ApiMethod(instanceRequired=true) Account getAccount()
The account associated with this saml configuration.
-
getAttributes
@ApiMethod(instanceRequired=true) List<Attribute> getAttributes()
The saml attribute values for a SoftLayer customer account.
-
-