anchela commented on a change in pull request #122: URL: https://github.com/apache/sling-org-apache-sling-feature-cpconverter/pull/122#discussion_r769519795
########## File path: src/main/java/org/apache/sling/feature/cpconverter/accesscontrol/RestrictionProvider.java ########## @@ -0,0 +1,45 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with this + * work for additional information regarding copyright ownership. The ASF + * licenses this file to You 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 org.apache.sling.feature.cpconverter.accesscontrol; + + +import org.apache.jackrabbit.oak.api.Type; +import org.apache.jackrabbit.oak.spi.security.authorization.restriction.RestrictionDefinition; +import org.apache.jackrabbit.oak.spi.security.authorization.restriction.RestrictionDefinitionImpl; + +import java.util.HashMap; +import java.util.Map; + +import static org.apache.jackrabbit.oak.spi.security.authorization.accesscontrol.AccessControlConstants.*; +import static org.apache.jackrabbit.oak.spi.security.authorization.accesscontrol.AccessControlConstants.REP_ITEM_NAMES; + +public class RestrictionProvider { Review comment: hi @niekraaijmakers not sure i get it..... my point is that the converter should not attempt to validate the restriction definitions as defined in the sling-initial-content. it should just use the string representation to build repo-init statements. in other words: - ignore jcr Value - ignore how restrictions are represented inside oak (which is sort of an implementation detail.... if you would take Jackrabbit 1.0 it wouldn't work the same way) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
