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

com.frameworkset.platform.security.event.ACLEventSource Maven / Gradle / Ivy

There is a newer version: 5.6.4
Show newest version
package com.frameworkset.platform.security.event;

import java.io.Serializable;

import com.frameworkset.platform.security.context.AccessContext;

/**
 * 

Title: 系统安全管理事件源信息 *

* *

Description: 包含事件发生的上下文和事件源消息

* *

Copyright: Copyright (c) 2006

* *

Company:

* * @author biaoping.yin * @version 1.0 */ public class ACLEventSource implements Serializable{ private AccessContext context; private Object message; public static void main(String[] args) { ACLEventSource acleventsource = new ACLEventSource(); } public AccessContext getContext() { return context; } public Object getMessage() { return message; } public void setContext(AccessContext context) { this.context = context; } public void setMessage(Object message) { this.message = message; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy