Return-Path: X-Original-To: apmail-chemistry-commits-archive@www.apache.org Delivered-To: apmail-chemistry-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 251169A05 for ; Tue, 3 Apr 2012 04:26:18 +0000 (UTC) Received: (qmail 8990 invoked by uid 500); 3 Apr 2012 04:26:18 -0000 Delivered-To: apmail-chemistry-commits-archive@chemistry.apache.org Received: (qmail 8927 invoked by uid 500); 3 Apr 2012 04:26:17 -0000 Mailing-List: contact commits-help@chemistry.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@chemistry.apache.org Delivered-To: mailing list commits@chemistry.apache.org Received: (qmail 8915 invoked by uid 99); 3 Apr 2012 04:26:17 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Apr 2012 04:26:17 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 03 Apr 2012 04:26:12 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 1C3472388C3D; Tue, 3 Apr 2012 04:25:16 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1308678 [11/15] - in /chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons: ./ chemistry-opencmis-commons-api/ chemistry-opencmis-commons-api/css/ chemistry-opencmis-commons-api/images/ chemistry-opencmis-commons-api/im... Date: Tue, 03 Apr 2012 04:25:07 -0000 To: commits@chemistry.apache.org From: gabriele@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120403042516.1C3472388C3D@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Added: chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisPermissionDeniedException.html URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisPermissionDeniedException.html?rev=1308678&view=auto ============================================================================== --- chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisPermissionDeniedException.html (added) +++ chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisPermissionDeniedException.html Tue Apr 3 04:25:02 2012 @@ -0,0 +1,81 @@ + + + + +CmisPermissionDeniedException xref + + + +
+
+1   /*
+2    * Licensed to the Apache Software Foundation (ASF) under one
+3    * or more contributor license agreements.  See the NOTICE file
+4    * distributed with this work for additional information
+5    * regarding copyright ownership.  The ASF licenses this file
+6    * to you under the Apache License, Version 2.0 (the
+7    * "License"); you may not use this file except in compliance
+8    * with the License.  You may obtain a copy of the License at
+9    *
+10   * http://www.apache.org/licenses/LICENSE-2.0
+11   *
+12   * Unless required by applicable law or agreed to in writing,
+13   * software distributed under the License is distributed on an
+14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+15   * KIND, either express or implied.  See the License for the
+16   * specific language governing permissions and limitations
+17   * under the License.
+18   */
+19  package org.apache.chemistry.opencmis.commons.exceptions;
+20  
+21  import java.math.BigInteger;
+22  
+23  /**
+24   * CMIS PermissionDenied Exception.
+25   */
+26  public class CmisPermissionDeniedException extends CmisBaseException {
+27  
+28      private static final long serialVersionUID = 1L;
+29      public static final String EXCEPTION_NAME = "permissionDenied";
+30  
+31      public CmisPermissionDeniedException() {
+32          super();
+33      }
+34  
+35      public CmisPermissionDeniedException(String message, BigInteger code, Throwable cause) {
+36          super(message, code, cause);
+37      }
+38  
+39      public CmisPermissionDeniedException(String message, String errorContent) {
+40          super(message, errorContent);
+41      }
+42  
+43      public CmisPermissionDeniedException(String message, BigInteger code) {
+44          super(message, code);
+45      }
+46  
+47      public CmisPermissionDeniedException(String message, BigInteger code, String errorContent) {
+48          super(message, code, errorContent);
+49      }
+50      
+51      public CmisPermissionDeniedException(String message, String errorContent, Throwable cause) {
+52          super(message, errorContent, cause);
+53      }
+54  
+55      public CmisPermissionDeniedException(String message, Throwable cause) {
+56          super(message, BigInteger.ZERO, cause);
+57      }
+58  
+59      public CmisPermissionDeniedException(String message) {
+60          super(message, BigInteger.ZERO);
+61      }
+62      
+63      @Override
+64      public String getExceptionName() {
+65          return EXCEPTION_NAME;
+66      }
+67  }
+
+
+ + Added: chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisProxyAuthenticationException.html URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisProxyAuthenticationException.html?rev=1308678&view=auto ============================================================================== --- chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisProxyAuthenticationException.html (added) +++ chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisProxyAuthenticationException.html Tue Apr 3 04:25:02 2012 @@ -0,0 +1,79 @@ + + + + +CmisProxyAuthenticationException xref + + + +
+
+1   /*
+2    * Licensed to the Apache Software Foundation (ASF) under one
+3    * or more contributor license agreements.  See the NOTICE file
+4    * distributed with this work for additional information
+5    * regarding copyright ownership.  The ASF licenses this file
+6    * to you under the Apache License, Version 2.0 (the
+7    * "License"); you may not use this file except in compliance
+8    * with the License.  You may obtain a copy of the License at
+9    *
+10   * http://www.apache.org/licenses/LICENSE-2.0
+11   *
+12   * Unless required by applicable law or agreed to in writing,
+13   * software distributed under the License is distributed on an
+14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+15   * KIND, either express or implied.  See the License for the
+16   * specific language governing permissions and limitations
+17   * under the License.
+18   */
+19  package org.apache.chemistry.opencmis.commons.exceptions;
+20  
+21  import java.math.BigInteger;
+22  
+23  /**
+24   * Proxy authentication exception.
+25   * 
+26   * (This is exception is not defined in the CMIS specification and is therefore
+27   * derived from {@link CmisRuntimeException}.)
+28   */
+29  public class CmisProxyAuthenticationException extends CmisRuntimeException {
+30  
+31      private static final long serialVersionUID = 1L;
+32  
+33      public CmisProxyAuthenticationException() {
+34          super();
+35      }
+36  
+37      public CmisProxyAuthenticationException(String message, BigInteger code, Throwable cause) {
+38          super(message, code, cause);
+39      }
+40  
+41      public CmisProxyAuthenticationException(String message, String errorContent) {
+42          super(message, errorContent);
+43      }
+44  
+45      public CmisProxyAuthenticationException(String message, BigInteger code) {
+46          super(message, code);
+47      }
+48  
+49      public CmisProxyAuthenticationException(String message, BigInteger code, String errorContent) {
+50          super(message, code, errorContent);
+51      }
+52  
+53      public CmisProxyAuthenticationException(String message, String errorContent, Throwable cause) {
+54          super(message, errorContent, cause);
+55      }
+56  
+57      public CmisProxyAuthenticationException(String message, Throwable cause) {
+58          super(message, BigInteger.ZERO, cause);
+59      }
+60  
+61      public CmisProxyAuthenticationException(String message) {
+62          super(message, BigInteger.ZERO);
+63      }
+64  
+65  }
+
+
+ + Added: chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisRuntimeException.html URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisRuntimeException.html?rev=1308678&view=auto ============================================================================== --- chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisRuntimeException.html (added) +++ chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisRuntimeException.html Tue Apr 3 04:25:02 2012 @@ -0,0 +1,81 @@ + + + + +CmisRuntimeException xref + + + +
+
+1   /*
+2    * Licensed to the Apache Software Foundation (ASF) under one
+3    * or more contributor license agreements.  See the NOTICE file
+4    * distributed with this work for additional information
+5    * regarding copyright ownership.  The ASF licenses this file
+6    * to you under the Apache License, Version 2.0 (the
+7    * "License"); you may not use this file except in compliance
+8    * with the License.  You may obtain a copy of the License at
+9    *
+10   * http://www.apache.org/licenses/LICENSE-2.0
+11   *
+12   * Unless required by applicable law or agreed to in writing,
+13   * software distributed under the License is distributed on an
+14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+15   * KIND, either express or implied.  See the License for the
+16   * specific language governing permissions and limitations
+17   * under the License.
+18   */
+19  package org.apache.chemistry.opencmis.commons.exceptions;
+20  
+21  import java.math.BigInteger;
+22  
+23  /**
+24   * CMIS Runtime Exception.
+25   */
+26  public class CmisRuntimeException extends CmisBaseException {
+27  
+28      private static final long serialVersionUID = 1L;
+29      public static final String EXCEPTION_NAME = "runtime";
+30  
+31      public CmisRuntimeException() {
+32          super();
+33      }
+34  
+35      public CmisRuntimeException(String message, BigInteger code, Throwable cause) {
+36          super(message, code, cause);
+37      }
+38  
+39      public CmisRuntimeException(String message, String errorContent) {
+40          super(message, errorContent);
+41      }
+42  
+43      public CmisRuntimeException(String message, BigInteger code) {
+44          super(message, code);
+45      }
+46  
+47      public CmisRuntimeException(String message, BigInteger code, String errorContent) {
+48          super(message, code, errorContent);
+49      }
+50      
+51      public CmisRuntimeException(String message, String errorContent, Throwable cause) {
+52          super(message, errorContent, cause);
+53      }
+54  
+55      public CmisRuntimeException(String message, Throwable cause) {
+56          super(message, BigInteger.ZERO, cause);
+57      }
+58  
+59      public CmisRuntimeException(String message) {
+60          super(message, BigInteger.ZERO);
+61      }
+62      
+63      @Override
+64      public String getExceptionName() {
+65          return EXCEPTION_NAME;
+66      }
+67  }
+
+
+ + Added: chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisStorageException.html URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisStorageException.html?rev=1308678&view=auto ============================================================================== --- chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisStorageException.html (added) +++ chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisStorageException.html Tue Apr 3 04:25:02 2012 @@ -0,0 +1,81 @@ + + + + +CmisStorageException xref + + + +
+
+1   /*
+2    * Licensed to the Apache Software Foundation (ASF) under one
+3    * or more contributor license agreements.  See the NOTICE file
+4    * distributed with this work for additional information
+5    * regarding copyright ownership.  The ASF licenses this file
+6    * to you under the Apache License, Version 2.0 (the
+7    * "License"); you may not use this file except in compliance
+8    * with the License.  You may obtain a copy of the License at
+9    *
+10   * http://www.apache.org/licenses/LICENSE-2.0
+11   *
+12   * Unless required by applicable law or agreed to in writing,
+13   * software distributed under the License is distributed on an
+14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+15   * KIND, either express or implied.  See the License for the
+16   * specific language governing permissions and limitations
+17   * under the License.
+18   */
+19  package org.apache.chemistry.opencmis.commons.exceptions;
+20  
+21  import java.math.BigInteger;
+22  
+23  /**
+24   * CMIS Storage Exception.
+25   */
+26  public class CmisStorageException extends CmisBaseException {
+27  
+28      private static final long serialVersionUID = 1L;
+29      public static final String EXCEPTION_NAME = "storage";
+30  
+31      public CmisStorageException() {
+32          super();
+33      }
+34  
+35      public CmisStorageException(String message, BigInteger code, Throwable cause) {
+36          super(message, code, cause);
+37      }
+38  
+39      public CmisStorageException(String message, String errorContent) {
+40          super(message, errorContent);
+41      }
+42  
+43      public CmisStorageException(String message, BigInteger code) {
+44          super(message, code);
+45      }
+46  
+47      public CmisStorageException(String message, BigInteger code, String errorContent) {
+48          super(message, code, errorContent);
+49      }
+50  
+51      public CmisStorageException(String message, String errorContent, Throwable cause) {
+52          super(message, errorContent, cause);
+53      }
+54  
+55      public CmisStorageException(String message, Throwable cause) {
+56          super(message, BigInteger.ZERO, cause);
+57      }
+58  
+59      public CmisStorageException(String message) {
+60          super(message, BigInteger.ZERO);
+61      }
+62  
+63      @Override
+64      public String getExceptionName() {
+65          return EXCEPTION_NAME;
+66      }
+67  }
+
+
+ + Added: chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisStreamNotSupportedException.html URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisStreamNotSupportedException.html?rev=1308678&view=auto ============================================================================== --- chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisStreamNotSupportedException.html (added) +++ chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisStreamNotSupportedException.html Tue Apr 3 04:25:02 2012 @@ -0,0 +1,81 @@ + + + + +CmisStreamNotSupportedException xref + + + +
+
+1   /*
+2    * Licensed to the Apache Software Foundation (ASF) under one
+3    * or more contributor license agreements.  See the NOTICE file
+4    * distributed with this work for additional information
+5    * regarding copyright ownership.  The ASF licenses this file
+6    * to you under the Apache License, Version 2.0 (the
+7    * "License"); you may not use this file except in compliance
+8    * with the License.  You may obtain a copy of the License at
+9    *
+10   * http://www.apache.org/licenses/LICENSE-2.0
+11   *
+12   * Unless required by applicable law or agreed to in writing,
+13   * software distributed under the License is distributed on an
+14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+15   * KIND, either express or implied.  See the License for the
+16   * specific language governing permissions and limitations
+17   * under the License.
+18   */
+19  package org.apache.chemistry.opencmis.commons.exceptions;
+20  
+21  import java.math.BigInteger;
+22  
+23  /**
+24   * CMIS StreamNotSupported Exception.
+25   */
+26  public class CmisStreamNotSupportedException extends CmisBaseException {
+27  
+28      private static final long serialVersionUID = 1L;
+29      public static final String EXCEPTION_NAME = "streamNotSupported";
+30  
+31      public CmisStreamNotSupportedException() {
+32          super();
+33      }
+34  
+35      public CmisStreamNotSupportedException(String message, BigInteger code, Throwable cause) {
+36          super(message, code, cause);
+37      }
+38  
+39      public CmisStreamNotSupportedException(String message, String errorContent) {
+40          super(message, errorContent);
+41      }
+42  
+43      public CmisStreamNotSupportedException(String message, BigInteger code) {
+44          super(message, code);
+45      }
+46  
+47      public CmisStreamNotSupportedException(String message, BigInteger code, String errorContent) {
+48          super(message, code, errorContent);
+49      }
+50      
+51      public CmisStreamNotSupportedException(String message, String errorContent, Throwable cause) {
+52          super(message, errorContent, cause);
+53      }
+54  
+55      public CmisStreamNotSupportedException(String message, Throwable cause) {
+56          super(message, BigInteger.ZERO, cause);
+57      }
+58  
+59      public CmisStreamNotSupportedException(String message) {
+60          super(message, BigInteger.ZERO);
+61      }
+62      
+63      @Override
+64      public String getExceptionName() {
+65          return EXCEPTION_NAME;
+66      }
+67  }
+
+
+ + Added: chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisUnauthorizedException.html URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisUnauthorizedException.html?rev=1308678&view=auto ============================================================================== --- chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisUnauthorizedException.html (added) +++ chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisUnauthorizedException.html Tue Apr 3 04:25:02 2012 @@ -0,0 +1,78 @@ + + + + +CmisUnauthorizedException xref + + + +
+
+1   /*
+2    * Licensed to the Apache Software Foundation (ASF) under one
+3    * or more contributor license agreements.  See the NOTICE file
+4    * distributed with this work for additional information
+5    * regarding copyright ownership.  The ASF licenses this file
+6    * to you under the Apache License, Version 2.0 (the
+7    * "License"); you may not use this file except in compliance
+8    * with the License.  You may obtain a copy of the License at
+9    *
+10   * http://www.apache.org/licenses/LICENSE-2.0
+11   *
+12   * Unless required by applicable law or agreed to in writing,
+13   * software distributed under the License is distributed on an
+14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+15   * KIND, either express or implied.  See the License for the
+16   * specific language governing permissions and limitations
+17   * under the License.
+18   */
+19  package org.apache.chemistry.opencmis.commons.exceptions;
+20  
+21  import java.math.BigInteger;
+22  
+23  /**
+24   * Unauthorized exception.
+25   * 
+26   * (This is exception is not defined in the CMIS specification and is therefore
+27   * derived from {@link CmisRuntimeException}.)
+28   */
+29  public class CmisUnauthorizedException extends CmisRuntimeException {
+30  
+31      private static final long serialVersionUID = 1L;
+32  
+33      public CmisUnauthorizedException() {
+34          super();
+35      }
+36  
+37      public CmisUnauthorizedException(String message, BigInteger code, Throwable cause) {
+38          super(message, code, cause);
+39      }
+40  
+41      public CmisUnauthorizedException(String message, String errorContent) {
+42          super(message, errorContent);
+43      }
+44  
+45      public CmisUnauthorizedException(String message, BigInteger code) {
+46          super(message, code);
+47      }
+48  
+49      public CmisUnauthorizedException(String message, BigInteger code, String errorContent) {
+50          super(message, code, errorContent);
+51      }
+52  
+53      public CmisUnauthorizedException(String message, String errorContent, Throwable cause) {
+54          super(message, errorContent, cause);
+55      }
+56  
+57      public CmisUnauthorizedException(String message, Throwable cause) {
+58          super(message, BigInteger.ZERO, cause);
+59      }
+60  
+61      public CmisUnauthorizedException(String message) {
+62          super(message, BigInteger.ZERO);
+63      }
+64  }
+
+
+ + Added: chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisUpdateConflictException.html URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisUpdateConflictException.html?rev=1308678&view=auto ============================================================================== --- chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisUpdateConflictException.html (added) +++ chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisUpdateConflictException.html Tue Apr 3 04:25:02 2012 @@ -0,0 +1,81 @@ + + + + +CmisUpdateConflictException xref + + + +
+
+1   /*
+2    * Licensed to the Apache Software Foundation (ASF) under one
+3    * or more contributor license agreements.  See the NOTICE file
+4    * distributed with this work for additional information
+5    * regarding copyright ownership.  The ASF licenses this file
+6    * to you under the Apache License, Version 2.0 (the
+7    * "License"); you may not use this file except in compliance
+8    * with the License.  You may obtain a copy of the License at
+9    *
+10   * http://www.apache.org/licenses/LICENSE-2.0
+11   *
+12   * Unless required by applicable law or agreed to in writing,
+13   * software distributed under the License is distributed on an
+14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+15   * KIND, either express or implied.  See the License for the
+16   * specific language governing permissions and limitations
+17   * under the License.
+18   */
+19  package org.apache.chemistry.opencmis.commons.exceptions;
+20  
+21  import java.math.BigInteger;
+22  
+23  /**
+24   * CMIS UpdateConflict Exception.
+25   */
+26  public class CmisUpdateConflictException extends CmisBaseException {
+27  
+28      private static final long serialVersionUID = 1L;
+29      public static final String EXCEPTION_NAME = "updateConflict";
+30  
+31      public CmisUpdateConflictException() {
+32          super();
+33      }
+34  
+35      public CmisUpdateConflictException(String message, BigInteger code, Throwable cause) {
+36          super(message, code, cause);
+37      }
+38  
+39      public CmisUpdateConflictException(String message, String errorContent) {
+40          super(message, errorContent);
+41      }
+42  
+43      public CmisUpdateConflictException(String message, BigInteger code) {
+44          super(message, code);
+45      }
+46  
+47      public CmisUpdateConflictException(String message, BigInteger code, String errorContent) {
+48          super(message, code, errorContent);
+49      }
+50  
+51      public CmisUpdateConflictException(String message, String errorContent, Throwable cause) {
+52          super(message, errorContent, cause);
+53      }
+54  
+55      public CmisUpdateConflictException(String message, Throwable cause) {
+56          super(message, BigInteger.ZERO, cause);
+57      }
+58  
+59      public CmisUpdateConflictException(String message) {
+60          super(message, BigInteger.ZERO);
+61      }
+62  
+63      @Override
+64      public String getExceptionName() {
+65          return EXCEPTION_NAME;
+66      }
+67  }
+
+
+ + Added: chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisVersioningException.html URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisVersioningException.html?rev=1308678&view=auto ============================================================================== --- chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisVersioningException.html (added) +++ chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/CmisVersioningException.html Tue Apr 3 04:25:02 2012 @@ -0,0 +1,81 @@ + + + + +CmisVersioningException xref + + + +
+
+1   /*
+2    * Licensed to the Apache Software Foundation (ASF) under one
+3    * or more contributor license agreements.  See the NOTICE file
+4    * distributed with this work for additional information
+5    * regarding copyright ownership.  The ASF licenses this file
+6    * to you under the Apache License, Version 2.0 (the
+7    * "License"); you may not use this file except in compliance
+8    * with the License.  You may obtain a copy of the License at
+9    *
+10   * http://www.apache.org/licenses/LICENSE-2.0
+11   *
+12   * Unless required by applicable law or agreed to in writing,
+13   * software distributed under the License is distributed on an
+14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+15   * KIND, either express or implied.  See the License for the
+16   * specific language governing permissions and limitations
+17   * under the License.
+18   */
+19  package org.apache.chemistry.opencmis.commons.exceptions;
+20  
+21  import java.math.BigInteger;
+22  
+23  /**
+24   * CMIS Versioning Exception.
+25   */
+26  public class CmisVersioningException extends CmisBaseException {
+27  
+28      private static final long serialVersionUID = 1L;
+29      public static final String EXCEPTION_NAME = "versioning";
+30  
+31      public CmisVersioningException() {
+32          super();
+33      }
+34  
+35      public CmisVersioningException(String message, BigInteger code, Throwable cause) {
+36          super(message, code, cause);
+37      }
+38  
+39      public CmisVersioningException(String message, String errorContent) {
+40          super(message, errorContent);
+41      }
+42  
+43      public CmisVersioningException(String message, BigInteger code) {
+44          super(message, code);
+45      }
+46  
+47      public CmisVersioningException(String message, BigInteger code, String errorContent) {
+48          super(message, code, errorContent);
+49      }
+50  
+51      public CmisVersioningException(String message, String errorContent, Throwable cause) {
+52          super(message, errorContent, cause);
+53      }
+54  
+55      public CmisVersioningException(String message, Throwable cause) {
+56          super(message, BigInteger.ZERO, cause);
+57      }
+58  
+59      public CmisVersioningException(String message) {
+60          super(message, BigInteger.ZERO);
+61      }
+62  
+63      @Override
+64      public String getExceptionName() {
+65          return EXCEPTION_NAME;
+66      }
+67  }
+
+
+ + Added: chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/package-frame.html URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/package-frame.html?rev=1308678&view=auto ============================================================================== --- chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/package-frame.html (added) +++ chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/package-frame.html Tue Apr 3 04:25:02 2012 @@ -0,0 +1,72 @@ + + + + + + OpenCMIS Commons API 0.7.0 Reference Package org.apache.chemistry.opencmis.commons.exceptions + + + + +

+ org.apache.chemistry.opencmis.commons.exceptions +

+ +

Classes

+ + + + + \ No newline at end of file Added: chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/package-summary.html URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/package-summary.html?rev=1308678&view=auto ============================================================================== --- chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/package-summary.html (added) +++ chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/exceptions/package-summary.html Tue Apr 3 04:25:02 2012 @@ -0,0 +1,147 @@ + + + + + + OpenCMIS Commons API 0.7.0 Reference Package org.apache.chemistry.opencmis.commons.exceptions + + + +
+ +
+
+ +
+ +

Package org.apache.chemistry.opencmis.commons.exceptions

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Class Summary
+ CmisBaseException +
+ CmisConnectionException +
+ CmisConstraintException +
+ CmisContentAlreadyExistsException +
+ CmisFilterNotValidException +
+ CmisInvalidArgumentException +
+ CmisNameConstraintViolationException +
+ CmisNotSupportedException +
+ CmisObjectNotFoundException +
+ CmisPermissionDeniedException +
+ CmisProxyAuthenticationException +
+ CmisRuntimeException +
+ CmisStorageException +
+ CmisStreamNotSupportedException +
+ CmisUnauthorizedException +
+ CmisUpdateConflictException +
+ CmisVersioningException +
+ +
+ +
+
+ +
+
+ Copyright © 2009-2012 The Apache Software Foundation. All Rights Reserved. + + \ No newline at end of file Added: chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/package-frame.html URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/package-frame.html?rev=1308678&view=auto ============================================================================== --- chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/package-frame.html (added) +++ chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/package-frame.html Tue Apr 3 04:25:02 2012 @@ -0,0 +1,30 @@ + + + + + + OpenCMIS Commons API 0.7.0 Reference Package org.apache.chemistry.opencmis.commons + + + + +

+ org.apache.chemistry.opencmis.commons +

+ +

Classes

+ + + + + \ No newline at end of file Added: chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/package-summary.html URL: http://svn.apache.org/viewvc/chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/package-summary.html?rev=1308678&view=auto ============================================================================== --- chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/package-summary.html (added) +++ chemistry/site/trunk/content/java/0.7.0/maven/chemistry-opencmis-commons/chemistry-opencmis-commons-api/xref/org/apache/chemistry/opencmis/commons/package-summary.html Tue Apr 3 04:25:02 2012 @@ -0,0 +1,77 @@ + + + + + + OpenCMIS Commons API 0.7.0 Reference Package org.apache.chemistry.opencmis.commons + + + +
+ +
+
+ +
+ +

Package org.apache.chemistry.opencmis.commons

+ + + + + + + + + + + + + + + + + + +
Class Summary
+ BasicPermissions +
+ PropertyIds +
+ SessionParameter +
+ +
+ +
+
+ +
+
+ Copyright © 2009-2012 The Apache Software Foundation. All Rights Reserved. + + \ No newline at end of file