com.identityx.clientSDK.queryHolders.TokenQueryHolder Maven / Gradle / Ivy
/*
* Copyright Daon.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.identityx.clientSDK.queryHolders;
import com.daon.identityx.rest.model.def.TokenStatusEnum;
import com.daon.identityx.rest.model.def.TokenTypeEnum;
public class TokenQueryHolder extends QueryHolder {
public class TokenSearchSpec extends SearchSpec {
private String subjectId = null;
private TokenStatusEnum status;
private TokenTypeEnum type;
public String getSubjectId() {
return subjectId;
}
public void setSubjectId(String subjectId) {
this.subjectId= subjectId;
}
public TokenStatusEnum getStatus() {
return status;
}
public void setStatus(TokenStatusEnum status) {
this.status = status;
}
public TokenTypeEnum getType() {
return type;
}
public void setType(TokenTypeEnum type) {
this.type = type;
}
}
private TokenSearchSpec searchSpec = new TokenSearchSpec();
@Override
public TokenSearchSpec getSearchSpec() {
return searchSpec;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy