WORKERS AHEAD!
You are viewing the development documentation for the Apereo CAS server. The functionality presented here is not officially released yet. This is a work in progress and will be continually updated as development moves forward. You are most encouraged to test the changes presented.
Configure Service Contacts
CAS has ability to assign contact information to a service definition. These are individual and/or entities that can be classified as owners of the application that may be notified in case changes are applied to the service definition.
A sample JSON file follows:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"@class" : "org.apereo.cas.services.CasRegisteredService",
"serviceId" : "^https://.+",
"name" : "sample service",
"id" : 100,
"contacts": [
"java.util.ArrayList", [{
"@class": "org.apereo.cas.services.DefaultRegisteredServiceContact",
"name": "John Smith",
"email": "jsmith@example.org",
"phone": "123-456-7890",
"department": "IT",
"type": "ADMIN"
}
]
]
}