Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getAccessKey (0.17 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/credentials/DefaultAwsCredentials.java

    public class DefaultAwsCredentials implements AwsCredentials {
    
        private String accessKey;
        private String secretKey;
        private String sessionToken;
    
        @Internal
        @Override
        public String getAccessKey() {
            return accessKey;
        }
    
        @Override
        public void setAccessKey(String accessKey) {
            this.accessKey = accessKey;
        }
    
        @Internal
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/credentials/AwsCredentials.java

     */
    public interface AwsCredentials extends Credentials {
    
        /**
         * Returns the access key to use to authenticate with AWS.
         */
        @Nullable
        String getAccessKey();
    
        /**
         * Sets the access key to use to authenticate with AWS.
         */
        void setAccessKey(@Nullable String accessKey);
    
        /**
         * Returns the secret key to use to authenticate with AWS.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 11 20:41:54 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  3. platforms/software/resources-s3/src/main/java/org/gradle/internal/resource/transport/aws/s3/S3Client.java

                if (awsCredentials.getSessionToken() == null) {
                    credentials =  new BasicAWSCredentials(awsCredentials.getAccessKey(), awsCredentials.getSecretKey());
                } else {
                    credentials =  new BasicSessionCredentials(awsCredentials.getAccessKey(), awsCredentials.getSecretKey(), awsCredentials.getSessionToken());
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  4. internal/jwt/parser.go

    }
    
    // MapClaims - implements custom unmarshaller
    type MapClaims struct {
    	AccessKey string `json:"accessKey,omitempty"`
    	jwtgo.MapClaims
    }
    
    // GetAccessKey will return the access key.
    // If nil an empty string will be returned.
    func (c *MapClaims) GetAccessKey() string {
    	if c == nil {
    		return ""
    	}
    	return c.AccessKey
    }
    
    // NewStandardClaims - initializes standard claims
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 09 07:53:08 UTC 2023
    - 13.9K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.credentials.AwsCredentials.getAccessKey()> does not have raw return type assignable to org.gradle.api.provider.Property in (AwsCredentials.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
Back to top