Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2014-03-08 17:27:53 +0000
committerEike Stepper2014-03-09 06:44:14 +0000
commit339f42ac5c2d5cd52cd54d340c8557d99daabb4c (patch)
tree59db83d2154affc5db8203546f8007ead0f8beae /plugins/org.eclipse.emf.cdo.server.security
parent4e59121792b693f3a2cf9070b9b111db71ee1285 (diff)
downloadcdo-339f42ac5c2d5cd52cd54d340c8557d99daabb4c.tar.gz
cdo-339f42ac5c2d5cd52cd54d340c8557d99daabb4c.tar.xz
cdo-339f42ac5c2d5cd52cd54d340c8557d99daabb4c.zip
Update Javadocs
Diffstat (limited to 'plugins/org.eclipse.emf.cdo.server.security')
-rw-r--r--plugins/org.eclipse.emf.cdo.server.security/src/org/eclipse/emf/cdo/server/spi/security/AnnotationHandler.java4
-rw-r--r--plugins/org.eclipse.emf.cdo.server.security/src/org/eclipse/emf/cdo/server/spi/security/HomeFolderHandler.java2
-rw-r--r--plugins/org.eclipse.emf.cdo.server.security/src/org/eclipse/emf/cdo/server/spi/security/InternalSecurityManager.java8
3 files changed, 10 insertions, 4 deletions
diff --git a/plugins/org.eclipse.emf.cdo.server.security/src/org/eclipse/emf/cdo/server/spi/security/AnnotationHandler.java b/plugins/org.eclipse.emf.cdo.server.security/src/org/eclipse/emf/cdo/server/spi/security/AnnotationHandler.java
index 14e4176cc3..b5f08ffffa 100644
--- a/plugins/org.eclipse.emf.cdo.server.security/src/org/eclipse/emf/cdo/server/spi/security/AnnotationHandler.java
+++ b/plugins/org.eclipse.emf.cdo.server.security/src/org/eclipse/emf/cdo/server/spi/security/AnnotationHandler.java
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2012, 2013 Eike Stepper (Berlin, Germany) and others.
+ * Copyright (c) 2012 - 2014 Eike Stepper (Berlin, Germany) 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
@@ -165,6 +165,8 @@ public class AnnotationHandler implements InternalSecurityManager.CommitHandler
}
/**
+ * Creates {@link AnnotationHandler} instances.
+ *
* @author Eike Stepper
* @since 4.3
*/
diff --git a/plugins/org.eclipse.emf.cdo.server.security/src/org/eclipse/emf/cdo/server/spi/security/HomeFolderHandler.java b/plugins/org.eclipse.emf.cdo.server.security/src/org/eclipse/emf/cdo/server/spi/security/HomeFolderHandler.java
index 7b030e52f9..4db6551e4a 100644
--- a/plugins/org.eclipse.emf.cdo.server.security/src/org/eclipse/emf/cdo/server/spi/security/HomeFolderHandler.java
+++ b/plugins/org.eclipse.emf.cdo.server.security/src/org/eclipse/emf/cdo/server/spi/security/HomeFolderHandler.java
@@ -222,6 +222,8 @@ public class HomeFolderHandler implements InternalSecurityManager.CommitHandler2
}
/**
+ * Creates {@link CommitHandler} instances.
+ *
* @author Eike Stepper
*/
public static class Factory extends InternalSecurityManager.CommitHandler.Factory implements ContainerAware
diff --git a/plugins/org.eclipse.emf.cdo.server.security/src/org/eclipse/emf/cdo/server/spi/security/InternalSecurityManager.java b/plugins/org.eclipse.emf.cdo.server.security/src/org/eclipse/emf/cdo/server/spi/security/InternalSecurityManager.java
index c3c1eeeb24..c8939bb4d1 100644
--- a/plugins/org.eclipse.emf.cdo.server.security/src/org/eclipse/emf/cdo/server/spi/security/InternalSecurityManager.java
+++ b/plugins/org.eclipse.emf.cdo.server.security/src/org/eclipse/emf/cdo/server/spi/security/InternalSecurityManager.java
@@ -56,16 +56,16 @@ public interface InternalSecurityManager extends ISecurityManager
/**
* Called <b>before</b> the commit is security checked and passed to the repository.
*
- * @param user the committing user or <code>null</code> if this commit is
+ * @param user the committing user or <code>null</code> if this commit is
* {@link ISecurityManager#modify(ISecurityManager.RealmOperation, boolean) triggered} by the system.
- *
+ *
* @see CommitHandler2
*/
public void handleCommit(InternalSecurityManager securityManager, CommitContext commitContext, User user);
/**
* Creates {@link CommitHandler} instances.
- *
+ *
* @author Eike Stepper
* @since 4.3
*/
@@ -96,6 +96,8 @@ public interface InternalSecurityManager extends ISecurityManager
public void handleCommitted(InternalSecurityManager securityManager, CommitContext commitContext);
/**
+ * If the meaning of this type isn't clear, there really should be more of a description here...
+ *
* @author Eike Stepper
*/
public static abstract class WithUser implements CommitHandler2

Back to the top