1package org.apache.archiva.mock;
23/*4 * Licensed to the Apache Software Foundation (ASF) under one5 * or more contributor license agreements. See the NOTICE file6 * distributed with this work for additional information7 * regarding copyright ownership. The ASF licenses this file8 * to you under the Apache License, Version 2.0 (the9 * "License"); you may not use this file except in compliance10 * with the License. You may obtain a copy of the License at11 *12 * http://www.apache.org/licenses/LICENSE-2.013 *14 * Unless required by applicable law or agreed to in writing,15 * software distributed under the License is distributed on an16 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY17 * KIND, either express or implied. See the License for the18 * specific language governing permissions and limitations19 * under the License.20 */2122import org.apache.archiva.metadata.repository.AbstractMetadataRepository;
23import org.apache.archiva.metadata.repository.MetadataRepository;
24import org.apache.archiva.metadata.repository.MetadataResolver;
25import org.apache.archiva.metadata.repository.RepositorySession;
26import org.apache.archiva.metadata.repository.RepositorySessionFactory;
27import org.springframework.stereotype.Service;
2829/**30 * @author Olivier Lamy31 */32 @Service( "repositorySessionFactory#mock" )
33publicclassMockRepositorySessionFactory34implements RepositorySessionFactory
35 {
36private MetadataRepository repository = new AbstractMetadataRepository()
37 {
38 };
3940private MetadataResolver resolver;
4142publicvoid setRepository( MetadataRepository repository )
43 {
44this.repository = repository;
45 }
4647publicvoid setResolver( MetadataResolver resolver )
48 {
49this.resolver = resolver;
50 }
5152 @Override
53public RepositorySession createSession()
54 {
55returnnew RepositorySession( repository, resolver )
56 {
57 @Override
58publicvoid close()
59 {
60return;
61 }
6263 @Override
64publicvoid save()
65 {
66// no op67 }
6869 @Override
70public MetadataRepository getRepository()
71 {
72return repository;
73 }
74 };
75 }
76 }