This project has retired. For details please refer to its Attic page.
RedbackRestError xref
View Javadoc

1   package org.apache.archiva.redback.rest.api.model;
2   /*
3    * Licensed to the Apache Software Foundation (ASF) under one
4    * or more contributor license agreements.  See the NOTICE file
5    * distributed with this work for additional information
6    * regarding copyright ownership.  The ASF licenses this file
7    * to you under the Apache License, Version 2.0 (the
8    * "License"); you may not use this file except in compliance
9    * with the License.  You may obtain a copy of the License at
10   *
11   *   http://www.apache.org/licenses/LICENSE-2.0
12   *
13   * Unless required by applicable law or agreed to in writing,
14   * software distributed under the License is distributed on an
15   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16   * KIND, either express or implied.  See the License for the
17   * specific language governing permissions and limitations
18   * under the License.
19   */
20  
21  import org.apache.commons.lang.StringUtils;
22  import org.apache.archiva.redback.rest.api.services.RedbackServiceException;
23  
24  import javax.xml.bind.annotation.XmlRootElement;
25  import java.io.Serializable;
26  import java.util.ArrayList;
27  import java.util.List;
28  
29  /**
30   * @author Olivier Lamy
31   * @since 1.4
32   */
33  @XmlRootElement( name = "redbackRestError" )
34  public class RedbackRestError
35      implements Serializable
36  {
37  
38      private List<ErrorMessage> errorMessages = new ArrayList<ErrorMessage>( 1 );
39  
40      public RedbackRestError()
41      {
42          // no op
43      }
44  
45      public RedbackRestError( RedbackServiceException e )
46      {
47          errorMessages.addAll( e.getErrorMessages() );
48          if ( e.getErrorMessages().isEmpty() && StringUtils.isNotEmpty( e.getMessage() ) )
49          {
50              errorMessages.add( new ErrorMessage( e.getMessage(), null ) );
51          }
52      }
53  
54  
55      public List<ErrorMessage> getErrorMessages()
56      {
57          return errorMessages;
58      }
59  
60      public void setErrorMessages( List<ErrorMessage> errorMessages )
61      {
62          this.errorMessages = errorMessages;
63      }
64  
65      public void addErrorMessage( ErrorMessage errorMessage )
66      {
67          this.errorMessages.add( errorMessage );
68      }
69  }