1 package org.apache.archiva.metadata.repository.file;
4 * Licensed to the Apache Software Foundation (ASF) under one
5 * or more contributor license agreements. See the NOTICE file
6 * distributed with this work for additional information
7 * regarding copyright ownership. The ASF licenses this file
8 * to you under the Apache License, Version 2.0 (the
9 * "License"); you may not use this file except in compliance
10 * with the License. You may obtain a copy of the License at
12 * http://www.apache.org/licenses/LICENSE-2.0
14 * Unless required by applicable law or agreed to in writing,
15 * software distributed under the License is distributed on an
16 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17 * KIND, either express or implied. See the License for the
18 * specific language governing permissions and limitations
23 import java.io.FileNotFoundException;
24 import java.io.FileOutputStream;
25 import java.io.IOException;
26 import java.util.Properties;
28 import org.apache.archiva.metadata.model.ProjectMetadata;
29 import org.apache.archiva.metadata.repository.MetadataRepository;
30 import org.apache.commons.io.IOUtils;
32 public class FileMetadataRepository
33 implements MetadataRepository
35 private File directory;
37 public FileMetadataRepository( File directory )
39 this.directory = directory;
42 public void update( ProjectMetadata project )
48 catch ( IOException e )
55 private void store( ProjectMetadata project )
56 throws FileNotFoundException, IOException
58 // TODO: this is a more braindead implementation than we would normally expect, for prototyping purposes
60 Properties properties = new Properties();
61 properties.put( "id", project.getId() );
62 File directory = new File( this.directory, project.getId() );
64 FileOutputStream os = new FileOutputStream( new File( directory, "metadata.xml" ) );
67 properties.storeToXML( os, null );
71 IOUtils.closeQuietly( os );