/* * Copyright (c) 2016 Network New Technologies Inc. * * 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.networknt.security; /** * Created by steve on 01/09/16. */ public class JwtConfig { String issuer; String audience; String version; int expiredInMinutes; Key key; public JwtConfig() { } public String getIssuer() { return issuer; } public void setIssuer(String issuer) { this.issuer = issuer; } public String getAudience() { return audience; } public void setAudience(String audience) { this.audience = audience; } public String getVersion() { return version; } public void setVersion(String version) { this.version = version; } public int getExpiredInMinutes() { return expiredInMinutes; } public void setExpiredInMinutes(int expiredInMinutes) { this.expiredInMinutes = expiredInMinutes; } public Key getKey() { return key; } public void setKey(Key key) { this.key = key; } public static class Key { String kid; String filename; String password; String keyName; public Key() { } public String getKid() { return kid; } public void setKid(String kid) { this.kid = kid; } public String getFilename() { return filename; } public void setFilename(String filename) { this.filename = filename; } public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } public String getKeyName() { return keyName; } public void setKeyName(String keyName) { this.keyName = keyName; } } }