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.maven.plugin; 20 21 import org.apache.maven.execution.MavenSession; 22 import org.eclipse.aether.RepositorySystemSession; 23 24 /** 25 * Helps to provide backward-compatibility with plugins that use legacy components. <strong>Warning:</strong> This is an 26 * internal utility interface that is only public for technical reasons, it is not part of the public API. In 27 * particular, this interface can be changed or deleted without prior notice. 28 * 29 * @since 3.0 30 */ 31 public interface LegacySupport { 32 33 /** 34 * Sets the currently active session. Some legacy components are basically stateful and their API is missing 35 * parameters that would be required to delegate to a stateless component. Saving the session (in a thread-local 36 * variable) is our best effort to record any state that is required to enable proper delegation. 37 * 38 * @param session The currently active session, may be {@code null}. 39 */ 40 void setSession(MavenSession session); 41 42 /** 43 * Gets the currently active session. 44 * 45 * @return The currently active session or {@code null} if none. 46 */ 47 MavenSession getSession(); 48 49 /** 50 * Gets the currently active repository session. 51 * 52 * @return The currently active repository session or {@code null} if none. 53 */ 54 RepositorySystemSession getRepositorySession(); 55 }