blob: 3c4814a94592ffda6e56bba842d443964e35b02e [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.cxf.fediz.core;
import java.io.Serializable;
import java.net.URI;
import java.security.Principal;
/**
*
*/
public class Claim implements Serializable {
/**
*
*/
private static final long serialVersionUID = 1L;
private URI claimType;
private String issuer;
private String originalIssuer;
private Principal principal;
private Object value;
private URI namespace = ClaimTypes.URI_BASE;
// To deprecate as ClaimType is fully qualified
@Deprecated
public URI getNamespace() {
return namespace;
}
@Deprecated
public void setNamespace(URI namespace) {
this.namespace = namespace;
}
public String getIssuer() {
return issuer;
}
public void setIssuer(String issuer) {
this.issuer = issuer;
}
public String getOriginalIssuer() {
return originalIssuer;
}
public void setOriginalIssuer(String originalIssuer) {
this.originalIssuer = originalIssuer;
}
public URI getClaimType() {
return claimType;
}
public void setClaimType(URI claimType) {
this.claimType = claimType;
}
public Principal getPrincipal() {
return principal;
}
public void setPrincipal(Principal principal) {
this.principal = principal;
}
public void setValue(Object value) {
this.value = value;
}
public Object getValue() {
return value;
}
}