Searched refs:issuer (Results 1 - 25 of 181) sorted by relevance

12345678

/forgerock/openam/openam-authentication/openam-auth-fr-oath/src/main/java/org/forgerock/openam/authentication/modules/fr/oath/
H A DAuthenticatorAppRegistrationURIBuilder.java43 private final String issuer; field in class:AuthenticatorAppRegistrationURIBuilder
53 * @param issuer Reference to the user's name. Must not be blank or null.
55 public AuthenticatorAppRegistrationURIBuilder(AMIdentity id, String secretHex, int codeLength, String issuer) { argument
58 Reject.ifTrue(StringUtils.isBlank(issuer), "issuer cannot be empty");
64 this.issuer = issuer;
115 "/" + issuer + ":" + userName, "secret=" + secretBase32 + "&issuer=" + issuer
[all...]
/forgerock/authenticator-android-v2/app/src/main/java/com/forgerock/authenticator/identity/
H A DIdentity.java42 private final String issuer; field in class:Identity
50 private Identity(IdentityModel model, long id, String issuer, String accountName, String backgroundColor, Uri imageURL) { argument
53 this.issuer = issuer;
118 return issuer;
148 reference.add(issuer + ":" + accountName);
155 reference.get(0).equals(issuer + ":" + accountName)) {
198 if (!issuer.equals(identity.issuer)) return false;
208 int result = issuer
276 private String issuer = ""; field in class:Identity.IdentityBuilder
296 setIssuer(String issuer) argument
[all...]
/forgerock/authenticator-ios-v2/ForgeRock-Authenticator/
H A DFRAIdentity.h33 @property (copy, nonatomic, readonly) NSString *issuer; variable
39 * URL pointing to an image (such as a logo) that represents the issuer of this identity.
64 - (instancetype)initWithDatabase:(FRAIdentityDatabase *)database identityModel:(FRAIdentityModel *)identityModel accountName:(NSString *)accountName issuer:(NSString *)issuer image:(NSURL *)image backgroundColor:(NSString *)color;
69 + (instancetype)identityWithDatabase:(FRAIdentityDatabase *)database identityModel:(FRAIdentityModel *)identityModel accountName:(NSString *)accountName issuer:(NSString *)issuer image:(NSURL *)image backgroundColor:(NSString *)color;
H A Dschema.sql2 issuer TEXT,
6 PRIMARY KEY( issuer, accountName ));
17 REFERENCES identity ( issuer, accountName ));
H A DFRAIdentity.m36 - (instancetype)initWithDatabase:(FRAIdentityDatabase *)database identityModel:(FRAIdentityModel *)identityModel accountName:(NSString *)accountName issuer:(NSString *)issuer image:(NSURL *)image backgroundColor:(NSString *) color {
39 _issuer = issuer;
47 + (instancetype)identityWithDatabase:(FRAIdentityDatabase *)database identityModel:(FRAIdentityModel *)identityModel accountName:(NSString *)accountName issuer:(NSString *)issuer image:(NSURL *)image backgroundColor:(NSString *)color {
48 return [[FRAIdentity alloc] initWithDatabase:database identityModel:identityModel accountName:accountName issuer:issuer image:image backgroundColor:color];
H A DFRAAccountTableViewCell.h27 * The UIImageView in which the issuer's icon will be displayed.
31 * The UILabel in which the issuer's name will be displayed.
33 @property (weak, nonatomic) IBOutlet UILabel *issuer; variable
/forgerock/openam-v13/openam-uma/src/main/java/org/forgerock/openam/uma/
H A DClaimGatherer.java45 * @param issuer The issuer.
48 JsonValue getRequiredClaimsDetails(String issuer); argument
/forgerock/openam/openam-uma/src/main/java/org/forgerock/openam/uma/
H A DClaimGatherer.java45 * @param issuer The issuer.
48 JsonValue getRequiredClaimsDetails(String issuer); argument
/forgerock/openam-v13/openam-authentication/openam-auth-fr-oath/src/main/java/org/forgerock/openam/authentication/modules/fr/oath/
H A DAuthenticatorAppRegistrationURIBuilder.java41 private final String issuer; field in class:AuthenticatorAppRegistrationURIBuilder
51 * @param issuer Reference to the user's name. Must not be blank or null.
53 public AuthenticatorAppRegistrationURIBuilder(AMIdentity id, String secretHex, int codeLength, String issuer) { argument
56 Reject.ifTrue(StringUtils.isBlank(issuer), "issuer cannot be empty");
62 this.issuer = issuer;
112 appRegistrationUri = "otpauth://" + otpType.getIdentifier() + "/" + issuer + ":" + realm + userName +
113 "?secret=" + secretBase32 + "&issuer=" + issuer
[all...]
/forgerock/openam/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/devices/push/
H A DPushDeviceSettings.java39 private String issuer; //the name of the issuer as originally advertised to this client field in class:PushDeviceSettings
129 * The name of the issuer when this device profile was issued.
130 * @param issuer The name of the issuer.
132 public void setIssuer(String issuer) { argument
133 Reject.ifTrue(StringUtils.isBlank(issuer), "issuer can not be null");
134 this.issuer = issuer;
[all...]
/forgerock/authenticator-android-v2/app/src/test/java/com/forgerock/authenticator/support/
H A DMockIdentityBuilder.java33 public MockIdentityBuilder withIssuer(String issuer) { argument
34 given(identity.getIssuer()).willReturn(issuer);
/forgerock/openam-v13/openam-schema/openam-xacml3-schema/src/main/java/com/sun/identity/entitlement/xacml3/core/
H A DAttribute.java81 protected String issuer; field in class:Attribute
139 * Gets the value of the issuer property.
147 return issuer;
151 * Sets the value of the issuer property.
159 this.issuer = value;
H A DAttributeAssignment.java75 protected String issuer; field in class:AttributeAssignment
126 * Gets the value of the issuer property.
134 return issuer;
138 * Sets the value of the issuer property.
146 this.issuer = value;
H A DAttributeAssignmentExpression.java83 protected String issuer; field in class:AttributeAssignmentExpression
170 * Gets the value of the issuer property.
178 return issuer;
182 * Sets the value of the issuer property.
190 this.issuer = value;
H A DAttributeDesignator.java81 protected String issuer; field in class:AttributeDesignator
158 * Gets the value of the issuer property.
166 return issuer;
170 * Sets the value of the issuer property.
178 this.issuer = value;
H A DMissingAttributeDetail.java88 protected String issuer; field in class:MissingAttributeDetail
192 * Gets the value of the issuer property.
200 return issuer;
204 * Sets the value of the issuer property.
212 this.issuer = value;
/forgerock/openam/openam-schema/openam-xacml3-schema/src/main/java/com/sun/identity/entitlement/xacml3/core/
H A DAttribute.java81 protected String issuer; field in class:Attribute
139 * Gets the value of the issuer property.
147 return issuer;
151 * Sets the value of the issuer property.
159 this.issuer = value;
H A DAttributeAssignment.java75 protected String issuer; field in class:AttributeAssignment
126 * Gets the value of the issuer property.
134 return issuer;
138 * Sets the value of the issuer property.
146 this.issuer = value;
H A DAttributeAssignmentExpression.java83 protected String issuer; field in class:AttributeAssignmentExpression
170 * Gets the value of the issuer property.
178 return issuer;
182 * Sets the value of the issuer property.
190 this.issuer = value;
H A DAttributeDesignator.java81 protected String issuer; field in class:AttributeDesignator
158 * Gets the value of the issuer property.
166 return issuer;
170 * Sets the value of the issuer property.
178 this.issuer = value;
H A DMissingAttributeDetail.java88 protected String issuer; field in class:MissingAttributeDetail
192 * Gets the value of the issuer property.
200 return issuer;
204 * Sets the value of the issuer property.
212 this.issuer = value;
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/client/
H A DXACMLRequestProcessor.java180 Issuer issuer = AssertionFactory.getInstance().createIssuer();
181 issuer.setValue("issuer-1");
182 issuer.setNameQualifier("name-qualifier");
183 //issuer.setSPProvidedID("sp-provided-id");
184 issuer.setSPNameQualifier("sp-name-qualifier");
185 issuer.setSPNameQualifier("sp-name-qualifier");
186 issuer.setFormat("format");
187 query.setIssuer(issuer);
/forgerock/openam/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/client/
H A DXACMLRequestProcessor.java183 Issuer issuer = AssertionFactory.getInstance().createIssuer();
184 issuer.setValue("issuer-1");
185 issuer.setNameQualifier("name-qualifier");
186 //issuer.setSPProvidedID("sp-provided-id");
187 issuer.setSPNameQualifier("sp-name-qualifier");
188 issuer.setSPNameQualifier("sp-name-qualifier");
189 issuer.setFormat("format");
190 query.setIssuer(issuer);
/forgerock/openam-v13/openam-federation/openam-federation-library/src/main/java/com/sun/identity/xacml/context/
H A DAttribute.java72 * Returns the issuer of the <code>Attribute</code>.
73 * @return <code>String</code> representing the issuer. It MAY be an
80 * Sets the issuer of the <code>Attribute</code>.
81 * @param issuer <code>String</code> representing the issuer.
88 public void setIssuer(String issuer) throws XACMLException; argument
H A DMissingAttributeDetail.java124 * @param issuer the <code>Issuer</code>s of this object
128 public void setIssuer(String issuer) throws XACMLException; argument

Completed in 34 milliseconds

12345678