Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: f0034ae96da33d9a771c437db0fd7f24d1064bf4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*******************************************************************************
 * Copyright (c) 2007, 2012 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.osgi.internal.provisional.service.security;

import org.eclipse.osgi.signedcontent.SignedContent;

/**
 * An event that is fired when an AuthorizationEngine implementation makes
 * a decision. 
 * @since 3.4
 */
public class AuthorizationEvent {

	/**
	 * Result code meaning that the operation was allowed
	 */
	public static final int ALLOWED = 0;

	/**
	 * Result code meaning that the operation was denied
	 */
	public static final int DENIED = 1;

	private final int result;
	private final SignedContent content;
	private final Object context;
	private final int severity;

	/**
	 * Create a new AuthorizationEvent
	 * @param result - the result code 
	 * @param content - the signed content
	 * @param context - operation specific context
	 * @param severity - severity code
	 */
	public AuthorizationEvent(int result, SignedContent content, Object context, int severity) {
		this.result = result;
		this.content = content;
		this.context = context;
		this.severity = severity;
	}

	/**
	 * Get the result code
	 * @return - the result code
	 */
	public int getResult() {
		return result;
	}

	/**
	 * get the severity
	 * @return - the severity
	 */
	public int getSeverity() {
		return severity;
	}

	/**
	 * Get the SignedContent object being evaluated
	 * @return - SignedContent
	 */
	public SignedContent getSignedContent() {
		return content;
	}

	/**
	 * Get the operation specific context
	 * @return - context
	 */
	public Object getContext() {
		return context;
	}
}

Back to the top