RequiredCredentialModel.java
    
    
    
    
    
        Home
            /
services                    /
src                    /
main                    /
java                    /
org                    /
keycloak                    /
services                    /
model                    /
                    RequiredCredentialModel.java
    
    
            
            package org.keycloak.services.model;
/**
 * @author <a href="mailto:bill@burkecentral.com">Bill Burke</a>
 * @version $Revision: 1 $
 */
public class RequiredCredentialModel
{
   protected String type;
   protected boolean input;
   protected boolean secret;
   public String getType()
   {
      return type;
   }
   public void setType(String type)
   {
      this.type = type;
   }
   public boolean isInput()
   {
      return input;
   }
   public void setInput(boolean input)
   {
      this.input = input;
   }
   public boolean isSecret()
   {
      return secret;
   }
   public void setSecret(boolean secret)
   {
      this.secret = secret;
   }
}