Skip to content
Snippets Groups Projects
Commit 98bf7f92 authored by gpawel's avatar gpawel
Browse files

BIS-178 Metaprojects: persistence layer and public API

SVN: 26932
parent f0166bd5
No related branches found
No related tags found
No related merge requests found
...@@ -32,6 +32,7 @@ import ch.systemsx.cisd.common.spring.IInvocationLoggerContext; ...@@ -32,6 +32,7 @@ import ch.systemsx.cisd.common.spring.IInvocationLoggerContext;
import ch.systemsx.cisd.openbis.generic.server.AbstractServer; import ch.systemsx.cisd.openbis.generic.server.AbstractServer;
import ch.systemsx.cisd.openbis.generic.server.authorization.annotation.AuthorizationGuard; import ch.systemsx.cisd.openbis.generic.server.authorization.annotation.AuthorizationGuard;
import ch.systemsx.cisd.openbis.generic.server.authorization.annotation.RolesAllowed; import ch.systemsx.cisd.openbis.generic.server.authorization.annotation.RolesAllowed;
import ch.systemsx.cisd.openbis.generic.server.authorization.predicate.MetaprojectIdPredicate;
import ch.systemsx.cisd.openbis.generic.server.authorization.predicate.MetaprojectPredicate; import ch.systemsx.cisd.openbis.generic.server.authorization.predicate.MetaprojectPredicate;
import ch.systemsx.cisd.openbis.generic.server.business.IPropertiesBatchManager; import ch.systemsx.cisd.openbis.generic.server.business.IPropertiesBatchManager;
import ch.systemsx.cisd.openbis.generic.server.dataaccess.IDAOFactory; import ch.systemsx.cisd.openbis.generic.server.dataaccess.IDAOFactory;
...@@ -177,7 +178,9 @@ public class GeneralInformationChangingService extends ...@@ -177,7 +178,9 @@ public class GeneralInformationChangingService extends
@Override @Override
@Transactional(readOnly = false) @Transactional(readOnly = false)
@RolesAllowed(RoleWithHierarchy.SPACE_USER) @RolesAllowed(RoleWithHierarchy.SPACE_USER)
public void deleteMetaproject(String sessionToken, Long metaprojectId) public void deleteMetaproject(String sessionToken,
@AuthorizationGuard(guardClass = MetaprojectIdPredicate.class)
Long metaprojectId)
{ {
server.deleteMetaproject(sessionToken, new TechId(metaprojectId)); server.deleteMetaproject(sessionToken, new TechId(metaprojectId));
} }
...@@ -185,8 +188,9 @@ public class GeneralInformationChangingService extends ...@@ -185,8 +188,9 @@ public class GeneralInformationChangingService extends
@Override @Override
@Transactional(readOnly = false) @Transactional(readOnly = false)
@RolesAllowed(RoleWithHierarchy.SPACE_USER) @RolesAllowed(RoleWithHierarchy.SPACE_USER)
public void addToMetaproject(String sessionToken, Long metaprojectId, public void addToMetaproject(String sessionToken,
Collection<Experiment> experiments, Collection<Sample> samples, @AuthorizationGuard(guardClass = MetaprojectIdPredicate.class)
Long metaprojectId, Collection<Experiment> experiments, Collection<Sample> samples,
Collection<DataSet> dataSets, Collection<Material> materials) Collection<DataSet> dataSets, Collection<Material> materials)
{ {
server.addToMetaproject(sessionToken, new TechId(metaprojectId), server.addToMetaproject(sessionToken, new TechId(metaprojectId),
...@@ -197,8 +201,9 @@ public class GeneralInformationChangingService extends ...@@ -197,8 +201,9 @@ public class GeneralInformationChangingService extends
@Override @Override
@Transactional(readOnly = false) @Transactional(readOnly = false)
@RolesAllowed(RoleWithHierarchy.SPACE_USER) @RolesAllowed(RoleWithHierarchy.SPACE_USER)
public void removeFromMetaproject(String sessionToken, Long metaprojectId, public void removeFromMetaproject(String sessionToken,
Collection<Experiment> experiments, Collection<Sample> samples, @AuthorizationGuard(guardClass = MetaprojectIdPredicate.class)
Long metaprojectId, Collection<Experiment> experiments, Collection<Sample> samples,
Collection<DataSet> dataSets, Collection<Material> materials) Collection<DataSet> dataSets, Collection<Material> materials)
{ {
server.removeFromMetaproject(sessionToken, new TechId(metaprojectId), server.removeFromMetaproject(sessionToken, new TechId(metaprojectId),
......
/*
* Copyright 2012 ETH Zuerich, CISD
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package ch.systemsx.cisd.openbis.generic.server.authorization.predicate;
import ch.systemsx.cisd.openbis.generic.shared.basic.TechId;
/**
* @author Pawel Glyzewski
*/
public class MetaprojectIdPredicate extends DelegatedPredicate<TechId, Long>
{
public MetaprojectIdPredicate()
{
super(new MetaprojectTechIdPredicate());
}
@Override
public TechId tryConvert(Long value)
{
return new TechId(value);
}
@Override
public String getCandidateDescription()
{
return "Metaproject Id";
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment