Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
caosdb-server
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
caosdb
Software
caosdb-server
Commits
0300902d
Verified
Commit
0300902d
authored
4 years ago
by
Timm Fitschen
Browse files
Options
Downloads
Patches
Plain Diff
cleanup
parent
01c58e79
No related branches found
Branches containing commit
No related tags found
Tags containing commit
3 merge requests
!21
Release v0.4.0
,
!7
F fsm
,
!6
Draft: F acm permissions2
Pipeline
#5932
passed
4 years ago
Stage: test
Stage: deploy
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/java/org/caosdb/server/entity/UpdateEntity.java
+1
-1
1 addition, 1 deletion
src/main/java/org/caosdb/server/entity/UpdateEntity.java
src/main/java/org/caosdb/server/permissions/EntityACL.java
+2
-2
2 additions, 2 deletions
src/main/java/org/caosdb/server/permissions/EntityACL.java
with
3 additions
and
3 deletions
src/main/java/org/caosdb/server/entity/UpdateEntity.java
+
1
−
1
View file @
0300902d
...
...
@@ -30,7 +30,7 @@ import org.jdom2.Element;
* UpdateEntity class represents entities which are to be updated. The previous version is appeded
* during the {@link WriteTransaction} transactions initialization.
*
* @author Timm Fitschen
(
t.fitschen@indiscale.com
)
* @author Timm Fitschen
<
t.fitschen@indiscale.com
>
*/
public
class
UpdateEntity
extends
WritableEntity
{
...
...
This diff is collapsed.
Click to expand it.
src/main/java/org/caosdb/server/permissions/EntityACL.java
+
2
−
2
View file @
0300902d
...
...
@@ -103,7 +103,7 @@ public class EntityACL {
}
public
static
final
EntityACL
getOwnerACLFor
(
final
ResponsibleAgent
agent
)
{
final
Abstract
EntityACLFactory
<
EntityACL
>
f
=
new
EntityACLFactory
();
final
EntityACLFactory
f
=
new
EntityACLFactory
();
f
.
grant
(
agent
,
"*"
);
return
f
.
create
();
}
...
...
@@ -291,7 +291,7 @@ public class EntityACL {
* @return
*/
public
static
final
EntityACL
parseFromElement
(
final
Element
e
)
{
final
Abstract
EntityACLFactory
<
EntityACL
>
factory
=
new
EntityACLFactory
();
final
EntityACLFactory
factory
=
new
EntityACLFactory
();
for
(
final
Element
c
:
e
.
getChildren
())
{
boolean
priority
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment