- Sort Score
- Result 10 results
- Languages All
Results 521 - 530 of 1,392 for Interface1 (0.05 sec)
-
compat/maven-artifact/src/main/java/org/apache/maven/artifact/repository/layout/ArtifactRepositoryLayout.java
/** * Repository layout. * * @deprecated Avoid use of this type, if you need access to local repository use repository system session instead. */ @Deprecated public interface ArtifactRepositoryLayout { String ROLE = ArtifactRepositoryLayout.class.getName(); String getId(); String pathOf(Artifact artifact);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/UpdateCheckManager.java
import org.apache.maven.artifact.repository.ArtifactRepository; import org.apache.maven.artifact.repository.metadata.RepositoryMetadata; /** * UpdateCheckManager */ @Deprecated public interface UpdateCheckManager { boolean isUpdateRequired(Artifact artifact, ArtifactRepository repository); void touch(Artifact artifact, ArtifactRepository repository, String error);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
src/test/java/jcifs/SmbConstantsTest.java
assertEquals(0x47, fullFileAccess); } @Test @DisplayName("Should validate constants are immutable interface values") void testConstantNature() { // SmbConstants is an interface with static final fields // Verify constants maintain their values assertEquals(445, SmbConstants.DEFAULT_PORT);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 11.3K bytes - Viewed (0) -
src/main/java/jcifs/SmbTree.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs; /** * Opaque reference to a SMB tree * * @author mbechler * */ public interface SmbTree extends AutoCloseable { /** * Unwraps the tree instance to the specified type * @param <T> the target tree type * @param type the class of the tree type to unwrap toRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.3K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/profiles/ProfileManager.java
import java.util.Map; import java.util.Properties; import org.apache.maven.model.Profile; import org.apache.maven.profiles.activation.ProfileActivationException; /** * ProfileManager */ @Deprecated public interface ProfileManager { void addProfile(Profile profile); void explicitlyActivate(String profileId); void explicitlyActivate(List<String> profileIds); void explicitlyDeactivate(String profileId);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.6K bytes - Viewed (0) -
compat/maven-toolchain-builder/src/main/java/org/apache/maven/toolchain/building/ToolchainsBuildingResult.java
/** * Collects the output of the toolchains builder. * * @since 3.3.0 * @deprecated since 4.0.0, use {@code org.apache.maven.api.services.ToolchainsBuilder} instead */ @Deprecated(since = "4.0.0") public interface ToolchainsBuildingResult { /** * Gets the assembled toolchains. * * @return The assembled toolchains, never {@code null}. */ PersistedToolchains getEffectiveToolchains(); /**Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Mar 05 09:37:42 UTC 2025 - 1.5K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/CoreExtensionSelector.java
import org.apache.maven.api.cli.extensions.CoreExtension; /** * Core extension selector: selects which entries to load from {@link InvokerRequest#coreExtensions()}. * * @param <C> The context type. */ public interface CoreExtensionSelector<C extends LookupContext> { /** * Selects core extensions to be loaded from list of all sources detected. */ @NonnullRegistered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Thu Mar 13 12:50:59 UTC 2025 - 1.4K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/logging/BuildEventListener.java
*/ package org.apache.maven.logging; import org.apache.maven.execution.ExecutionEvent; import org.eclipse.aether.transfer.TransferEvent; /** * An abstract build event sink. */ public interface BuildEventListener { void sessionStarted(ExecutionEvent event); void projectStarted(String projectId); void projectLogMessage(String projectId, String event);Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.5K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/ProjectDependenciesResolver.java
package org.apache.maven.project; /** * Resolves the transitive dependencies of a project. * * @deprecated use {@code org.apache.maven.api.services.ProjectBuilder} instead */ @Deprecated(since = "4.0.0") public interface ProjectDependenciesResolver { /** * Resolves the transitive dependencies of a project. * * @param request The resolution request holding the parameters, must not be {@code null}.Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Wed Jul 23 10:13:56 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/BeanDesc.java
*/ package org.codelibs.core.beans; import java.lang.reflect.Type; import java.lang.reflect.TypeVariable; import java.util.Map; import org.codelibs.core.beans.factory.BeanDescFactory; /** * Interface for handling JavaBeans metadata. * <p> * Instances of {@link BeanDesc} are obtained from {@link BeanDescFactory}. * </p> * * <pre> * BeanDesc beanDesc = BeanDescFactory.getBeanDesc(Foo.class); * </pre>Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 24 01:52:43 UTC 2025 - 7.9K bytes - Viewed (0)