Package org.apache.maven.archiva.database.constraints

Examples of org.apache.maven.archiva.database.constraints.RepositoryProblemByArtifactConstraint


            if( !file.exists() )
            {                   
                artifactDAO.deleteArtifact( artifact );

                // Remove all repository problems related to this artifact
                Constraint artifactConstraint = new RepositoryProblemByArtifactConstraint( artifact );
                List<RepositoryProblem> repositoryProblems =
                    repositoryProblemDAO.queryRepositoryProblems( artifactConstraint );

                if ( repositoryProblems != null )
                {
View Full Code Here


                artifactDAO.deleteArtifact( artifact );
               
                triggerAuditEvent( repositoryContent.getRepository().getId(), artifact.getGroupId() + ":" + artifact.getArtifactId() + ":" + artifact.getVersion(), AuditEvent.REMOVE_SCANNED );

                // Remove all repository problems related to this artifact
                Constraint artifactConstraint = new RepositoryProblemByArtifactConstraint( artifact );
                List<RepositoryProblem> repositoryProblems =
                    repositoryProblemDAO.queryRepositoryProblems( artifactConstraint );

                if ( repositoryProblems != null )
                {
View Full Code Here

                artifactDAO.deleteArtifact( artifact );
               
                triggerAuditEvent( repositoryContent.getRepository().getId(), artifact.getGroupId() + ":" + artifact.getArtifactId() + ":" + artifact.getVersion(), AuditEvent.REMOVE_SCANNED );

                // Remove all repository problems related to this artifact
                Constraint artifactConstraint = new RepositoryProblemByArtifactConstraint( artifact );
                List<RepositoryProblem> repositoryProblems =
                    repositoryProblemDAO.queryRepositoryProblems( artifactConstraint );

                if ( repositoryProblems != null )
                {
View Full Code Here

TOP

Related Classes of org.apache.maven.archiva.database.constraints.RepositoryProblemByArtifactConstraint

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.