clientpropertydefinition.java

来自「jsr170接口的java实现。是个apache的开源项目。」· Java 代码 · 共 90 行

JAVA
90
字号
/* * 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.jackrabbit.rmi.client;import java.rmi.RemoteException;import javax.jcr.Value;import javax.jcr.nodetype.PropertyDefinition;import org.apache.jackrabbit.rmi.remote.RemotePropertyDefinition;/** * Local adapter for the JCR-RMI * {@link org.apache.jackrabbit.rmi.remote.RemotePropertyDefinition RemotePropertyDefinition} * inteface. This class makes a remote property definition locally available * using the JCR {@link javax.jcr.nodetype.PropertyDefinition PropertyDef} interface. * * @author Jukka Zitting * @see javax.jcr.nodetype.PropertyDefinition * @see org.apache.jackrabbit.rmi.remote.RemotePropertyDefinition */public class ClientPropertyDefinition extends ClientItemDefinition implements PropertyDefinition {    /** The adapted remote property. */    private RemotePropertyDefinition remote;    /**     * Creates a local adapter for the given remote property definition.     *     * @param remote remote property definition     * @param factory local adapter factory     */    public ClientPropertyDefinition(            RemotePropertyDefinition remote, LocalAdapterFactory factory) {        super(remote, factory);        this.remote = remote;    }    /** {@inheritDoc} */    public int getRequiredType() {        try {            return remote.getRequiredType();        } catch (RemoteException ex) {            throw new RemoteRuntimeException(ex);        }    }    /** {@inheritDoc} */    public String[] getValueConstraints() {        try {            return remote.getValueConstraints();        } catch (RemoteException ex) {            throw new RemoteRuntimeException(ex);        }    }    /** {@inheritDoc} */    public Value[] getDefaultValues() {        try {            return remote.getDefaultValues();        } catch (RemoteException ex) {            throw new RemoteRuntimeException(ex);        }    }    /** {@inheritDoc} */    public boolean isMultiple() {        try {            return remote.isMultiple();        } catch (RemoteException ex) {            throw new RemoteRuntimeException(ex);        }    }}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?