All Downloads are FREE. Search and download functionalities are using the official Maven repository.

factcast-example-server-basicauth.0.2.0-RC.source-code.factcast-access.json Maven / Gradle / Ivy

There is a newer version: 195ae24
Show newest version
{
	"accounts": [
		{
			"id": "brain",
			"secret": "world",
			"roles": [
				"anything"
			]
		},
		{
			"id": "pinky",
			"secret": "narf",
			"roles": [
				"anything",
				"limited"
			]
		},
		{
			"id": "snowball",
			"secret": "grim",
			"roles": [
				"readOnlyWithoutAudit"
			]
		}
	],
	"roles": [
		{
			"id": "anything",
			"read": {
				"include": [
					"*"
				]
			},
			"write": {
				"include": [
					"*"
				]
			}
		},
		{
			"id": "limited",
			"read": {
				"include": [
					"*"
				],
				"exclude": [
					"secret"
				]
			},
			"write": {
				"exclude": [
					"audit*"
				]
			}
		},
		{
			"id": "readOnlyWithoutAudit",
			"read": {
				"include": [
					"*"
				],
				"exclude": [
					"audit*",
					"secret"
				]
			},
			"write": {
				"exclude":["*"]
			}
		}
	]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy