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

com.googlecode.charpa.progress.service.impl.NullSecurityService Maven / Gradle / Ivy

There is a newer version: 1.0-16
Show newest version
package com.googlecode.charpa.progress.service.impl;

import com.googlecode.charpa.progress.service.ProgressId;
import com.googlecode.charpa.progress.service.spi.ISecurityService;

/**
 * Dumb implementation which allows any progress to be seen by any user.
 */
public class NullSecurityService implements ISecurityService {

	public String getCurrentSecurityInfo() {
		return null;
	}

	public boolean userSeesProgress(ProgressId progressId,
			String currentSecurityInfo, String progressSecurityInfo) {
		return true;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy