001/* 002 * Copyright 2019 Anyware Services 003 * 004 * Licensed under the Apache License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.apache.org/licenses/LICENSE-2.0 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016package org.ametys.plugins.repository.data.ametysobject; 017 018import java.io.IOException; 019import java.util.Map; 020 021import org.ametys.plugins.repository.AmetysObject; 022import org.ametys.plugins.repository.data.UnknownDataException; 023import org.ametys.plugins.repository.data.holder.ModifiableModelLessDataHolder; 024import org.ametys.plugins.repository.data.holder.group.impl.ModifiableModelLessComposite; 025import org.ametys.plugins.repository.data.repositorydata.ModifiableRepositoryData; 026import org.ametys.runtime.model.exception.BadDataPathCardinalityException; 027import org.ametys.runtime.model.exception.BadItemTypeException; 028import org.ametys.runtime.model.exception.NotUniqueTypeException; 029import org.ametys.runtime.model.exception.UnknownTypeException; 030 031/** 032 * Model less {@link AmetysObject} that can handle modifiable data. 033 */ 034public interface ModifiableModelLessDataAwareAmetysObject extends ModifiableModelLessDataHolder, ModelLessDataAwareAmetysObject 035{ 036 @Override 037 public ModifiableModelLessDataHolder getDataHolder(); 038 039 @Override 040 public default ModifiableModelLessComposite getComposite(String compositePath) throws IllegalArgumentException, BadItemTypeException, BadDataPathCardinalityException 041 { 042 return getDataHolder().getComposite(compositePath); 043 } 044 045 public default ModifiableModelLessComposite getComposite(String compositePath, boolean createNew) throws IllegalArgumentException, BadItemTypeException, BadDataPathCardinalityException 046 { 047 return getDataHolder().getComposite(compositePath, createNew); 048 } 049 050 public default boolean synchronizeValues(Map<String, Object> values) throws UnknownTypeException, NotUniqueTypeException, IOException 051 { 052 return getDataHolder().synchronizeValues(values); 053 } 054 055 public default void setValue(String dataPath, Object value) throws IllegalArgumentException, UnknownTypeException, NotUniqueTypeException, UnknownDataException, BadDataPathCardinalityException 056 { 057 getDataHolder().setValue(dataPath, value); 058 } 059 060 public default void setValue(String dataPath, Object value, String dataType) throws IllegalArgumentException, BadItemTypeException, UnknownDataException, BadDataPathCardinalityException 061 { 062 getDataHolder().setValue(dataPath, value, dataType); 063 } 064 065 public default void removeValue(String dataPath) throws IllegalArgumentException, UnknownTypeException, BadItemTypeException, BadDataPathCardinalityException 066 { 067 getDataHolder().removeValue(dataPath); 068 } 069 070 public default ModifiableRepositoryData getRepositoryData() 071 { 072 return getDataHolder().getRepositoryData(); 073 } 074}