本文整理了Java中net.shibboleth.utilities.java.support.annotation.constraint.Live
类的一些代码示例,展示了Live
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Live
类的具体详情如下:
包路径:net.shibboleth.utilities.java.support.annotation.constraint.Live
类名称:Live
暂无
代码示例来源:origin: net.shibboleth.idp/idp-authn-api
/**
* Get the map of intermediate state that flows can use to pass information amongst themselves.
*
* <p>This is a simple string-based map of attributes that can be used to carry information between
* login flows or for subsequent use, without relying on native Spring WebFlow mechanisms.</p>
*
* @return the state map
*/
@Nonnull @Live public Map<String,Object> getAuthenticationStateMap() {
return stateMap;
}
代码示例来源:origin: net.shibboleth.idp/idp-authn-api
/**
* Get a mutable, ordered list of proxied authentication sources.
*
* @return proxied authentication sources
*
* @since 3.4.0
*/
@Nonnull @Live public Collection<String> getAuthenticatingAuthorities() {
return authenticatingAuthorities;
}
代码示例来源:origin: org.opensaml/opensaml-saml-api
/**
* Get the list of {@link MetadataFilter}s that make up this chain.
*
* @return the filters that make up this chain
*/
@Nonnull @NonnullElements @Live public List<MetadataFilter> getFilters() {
return filters;
}
代码示例来源:origin: org.opensaml/opensaml-saml-api
/**
* Gets the transforms applied to the content prior to digest generation.
*
* @return the transforms applied to the content prior to digest generation
*/
@Nonnull @NonnullElements @Live public List<String> getTransforms() {
return transforms;
}
代码示例来源:origin: net.shibboleth.idp/idp-profile-api
/**
* Get the results of the flow to be written to storage.
*
* @return the results of the flow to be written to storage
*/
@Nonnull @NonnullElements @Live public List<ProfileInterceptorResult> getResults() {
return results;
}
}
代码示例来源:origin: org.opensaml/opensaml-storage-api
/**
* Get the map of contexts to manipulate during operations.
*
* <p>This method is guaranteed to be called under cover the lock returned by {{@link #getLock()}.</p>
*
* TODO: this method needs to be able to throw IOException to deal with unexpected scenarios without
* raising unchecked exceptions.
*
* @return map of contexts to manipulate
*/
@Nonnull @NonnullElements @Live protected abstract Map<String, Map<String, MutableStorageRecord>> getContextMap();
代码示例来源:origin: net.shibboleth.idp/idp-authn-api
/**
* Get the set of flows that could potentially be used for authentication.
*
* <p>Initially the same as {@link #getAvailableFlows()}, it may be filtered down to a smaller set.</p>
*
* @return the potential flows
*/
@Nonnull @NonnullElements @Live public Map<String,AuthenticationFlowDescriptor> getPotentialFlows() {
return potentialFlows;
}
代码示例来源:origin: net.shibboleth.idp/idp-authn-api
/**
* Get a live map of the transitions to apply.
*
* @return map of transition logic
*/
@Nonnull @NonnullElements @Live public Map<String,MultiFactorAuthenticationTransition> getTransitionMap() {
return transitionMap;
}
代码示例来源:origin: org.opensaml/opensaml-storage-impl
/**
* Get the map of contexts to manipulate during operations.
*
* @return map of contexts to manipulate
*/
@Nonnull @NonnullElements @Live Map<String, Map<String, MutableStorageRecord>> getContextMap() {
return contextMap;
}
代码示例来源:origin: net.shibboleth.idp/idp-profile-api
/**
* Get the flows that are available to be executed.
*
* @return the available flows
*/
@Nonnull @NonnullElements @Live public Map<String, ProfileInterceptorFlowDescriptor> getAvailableFlows() {
return availableFlows;
}
代码示例来源:origin: net.shibboleth.idp/idp-authn-api
/**
* Get the set of flows that could potentially be used for subject canonicalization.
*
* @return the potential flows
*/
@Nonnull @NonnullElements @Live public Map<String, SubjectCanonicalizationFlowDescriptor> getPotentialFlows() {
return potentialFlows;
}
代码示例来源:origin: net.shibboleth.idp/idp-authn-api
/**
* Get previous authentication results currently active for the subject.
*
* <p>These should be used to identify SSO opportunities. Results produced during a particular
* authentication run should not be included in this collection.</p>
*
* @return authentication results currently active for the subject
*/
@Nonnull @NonnullElements @Live public Map<String,AuthenticationResult> getActiveResults() {
return activeResults;
}
代码示例来源:origin: net.shibboleth.idp/idp-authn-api
/**
* Get the set of flows that have been executed, successfully or otherwise, without producing a completed result.
*
* <p>This tracks flows that have already been run to avoid unintentional repeated attempts to run the same
* flow.</p>
*
* @return the intermediately executed flows
*/
@Nonnull @NonnullElements @Live public Map<String,AuthenticationFlowDescriptor> getIntermediateFlows() {
return intermediateFlows;
}
代码示例来源:origin: net.shibboleth.idp/idp-authn-api
/**
* Get a mutable collection of error "tokens" associated with the context.
*
* @return mutable collection of error strings
*/
@Nonnull @NonnullElements @Live public Collection<String> getClassifiedErrors() {
return classifiedErrors;
}
代码示例来源:origin: net.shibboleth.idp/idp-authn-impl
/**
* Get the matching rules to apply.
*
* @return a mutable multimap of the matching rules to apply
*/
@Nonnull @NonnullElements @Live Multimap<String,String> getMatchingRules() {
return matchingRules;
}
代码示例来源:origin: net.shibboleth.idp/idp-consent-api
/**
* Get the attributes to be consented to.
*
* @return the attributes to be consented to
*/
@Nonnull @NonnullElements @Live public Map<String, IdPAttribute> getConsentableAttributes() {
return consentableAttributes;
}
代码示例来源:origin: net.shibboleth.idp/idp-consent-api
/**
* Get map of current consent extracted from user input and keyed by consent id.
*
* @return map of current consent extracted from user input and keyed by consent id
*/
@Nonnull @NonnullElements @Live public Map<String, Consent> getCurrentConsents() {
return currentConsents;
}
代码示例来源:origin: org.opensaml/opensaml-saml-api
/**
* Get the channel bindings.
*
* @return the channel bindings
*/
@Nonnull @NonnullElements @Live public Collection<ChannelBindings> getChannelBindings() {
return channelBindings;
}
代码示例来源:origin: org.opensaml/opensaml-saml-impl
/**
* Get the list of metadata node processors.
*
* @return the list of metadata node processors.
*/
@Nonnull @NonnullElements @Live public List<MetadataNodeProcessor> getNodeProcessors() {
return processors;
}
代码示例来源:origin: org.opensaml/opensaml-storage-impl
/**
* Get the storage operations to perform.
*
* @return modifiable collection of storage operations
*/
@Nonnull @NonnullElements @Live public Collection<ClientStorageServiceOperation> getStorageOperations() {
return storageOperations;
}
内容来源于网络,如有侵权,请联系作者删除!