| | |
| | | /** |
| | | * {@inheritDoc} |
| | | */ |
| | | public Collection<?> getDefaultPropertyValues( |
| | | ManagedObjectPath path, String propertyName) |
| | | throws OperationsException, PropertyNotFoundException { |
| | | public Collection<?> getDefaultPropertyValues(ManagedObjectPath path, |
| | | String propertyName) throws OperationsException, |
| | | PropertyNotFoundException { |
| | | throw new PropertyNotFoundException(propertyName); |
| | | } |
| | | |
| | |
| | | * This implementation throws an |
| | | * {@link UnsupportedOperationException}. |
| | | */ |
| | | public void commit() throws OperationsException { |
| | | public void commit() throws UnsupportedOperationException { |
| | | throw new UnsupportedOperationException(); |
| | | } |
| | | |
| | |
| | | */ |
| | | public <M extends ConfigurationClient, N extends M> |
| | | ManagedObject<N> createChild( |
| | | InstantiableRelationDefinition<M, ?> r, |
| | | ManagedObjectDefinition<N, ?> d, String name, PropertyProvider p) |
| | | throws IllegalArgumentException, OperationsException { |
| | | InstantiableRelationDefinition<M, ?> r, ManagedObjectDefinition<N, ?> d, |
| | | String name, PropertyProvider p) throws UnsupportedOperationException { |
| | | throw new UnsupportedOperationException(); |
| | | } |
| | | |
| | |
| | | */ |
| | | public <M extends ConfigurationClient, N extends M> |
| | | ManagedObject<N> createChild( |
| | | OptionalRelationDefinition<M, ?> r, |
| | | ManagedObjectDefinition<N, ?> d, PropertyProvider p) |
| | | throws IllegalArgumentException, OperationsException { |
| | | OptionalRelationDefinition<M, ?> r, ManagedObjectDefinition<N, ?> d, |
| | | PropertyProvider p) throws UnsupportedOperationException { |
| | | throw new UnsupportedOperationException(); |
| | | } |
| | | |
| | |
| | | */ |
| | | public <M extends ConfigurationClient> ManagedObject<? extends M> getChild( |
| | | InstantiableRelationDefinition<M, ?> d, String name) |
| | | throws IllegalArgumentException, OperationsException { |
| | | throws UnsupportedOperationException { |
| | | throw new UnsupportedOperationException(); |
| | | } |
| | | |
| | |
| | | * {@link UnsupportedOperationException}. |
| | | */ |
| | | public <M extends ConfigurationClient> ManagedObject<? extends M> getChild( |
| | | OptionalRelationDefinition<M, ?> d) |
| | | throws IllegalArgumentException, OperationsException { |
| | | OptionalRelationDefinition<M, ?> d) throws UnsupportedOperationException { |
| | | throw new UnsupportedOperationException(); |
| | | } |
| | | |
| | |
| | | */ |
| | | public <M extends ConfigurationClient> ManagedObject<? extends M> getChild( |
| | | SingletonRelationDefinition<M, ?> d) |
| | | throws IllegalArgumentException, OperationsException { |
| | | throws UnsupportedOperationException { |
| | | throw new UnsupportedOperationException(); |
| | | } |
| | | |
| | |
| | | * {@link UnsupportedOperationException}. |
| | | */ |
| | | public boolean hasChild(OptionalRelationDefinition<?, ?> d) |
| | | throws IllegalArgumentException, OperationsException { |
| | | throws UnsupportedOperationException { |
| | | throw new UnsupportedOperationException(); |
| | | } |
| | | |
| | |
| | | * {@link UnsupportedOperationException}. |
| | | */ |
| | | public String[] listChildren(InstantiableRelationDefinition<?, ?> d) |
| | | throws IllegalArgumentException, OperationsException { |
| | | throws UnsupportedOperationException { |
| | | throw new UnsupportedOperationException(); |
| | | } |
| | | |
| | |
| | | */ |
| | | public <M extends ConfigurationClient> void removeChild( |
| | | InstantiableRelationDefinition<M, ?> d, String name) |
| | | throws IllegalArgumentException, OperationsException { |
| | | throws UnsupportedOperationException { |
| | | throw new UnsupportedOperationException(); |
| | | } |
| | | |
| | |
| | | * {@link UnsupportedOperationException}. |
| | | */ |
| | | public <M extends ConfigurationClient> void removeChild( |
| | | OptionalRelationDefinition<M, ?> d) |
| | | throws IllegalArgumentException, OperationsException { |
| | | OptionalRelationDefinition<M, ?> d) throws UnsupportedOperationException { |
| | | throw new UnsupportedOperationException(); |
| | | |
| | | } |
| | |
| | | * {@inheritDoc} |
| | | */ |
| | | public <T> void setPropertyValue(PropertyDefinition<T> d, T value) |
| | | throws IllegalPropertyValueException, |
| | | PropertyIsReadOnlyException, PropertyIsMandatoryException, |
| | | IllegalArgumentException { |
| | | throws IllegalPropertyValueException, PropertyIsReadOnlyException, |
| | | PropertyIsMandatoryException, IllegalArgumentException { |
| | | properties.setPropertyValue(d, value); |
| | | } |
| | | |