not entities after all
parent
3d9ec51eb3
commit
970e3f2f79
|
@ -17,7 +17,6 @@ import com.nimbusds.jose.JWEAlgorithm;
|
||||||
* @author jricher
|
* @author jricher
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@Entity
|
|
||||||
@Embeddable
|
@Embeddable
|
||||||
public class JWEAlgorithmEntity {
|
public class JWEAlgorithmEntity {
|
||||||
|
|
||||||
|
|
|
@ -6,6 +6,7 @@ package org.mitre.jose;
|
||||||
import javax.persistence.Basic;
|
import javax.persistence.Basic;
|
||||||
import javax.persistence.Embeddable;
|
import javax.persistence.Embeddable;
|
||||||
import javax.persistence.Entity;
|
import javax.persistence.Entity;
|
||||||
|
import javax.persistence.Id;
|
||||||
import javax.persistence.Transient;
|
import javax.persistence.Transient;
|
||||||
|
|
||||||
import com.nimbusds.jose.JWSAlgorithm;
|
import com.nimbusds.jose.JWSAlgorithm;
|
||||||
|
@ -17,7 +18,6 @@ import com.nimbusds.jose.JWSAlgorithm;
|
||||||
* @author jricher
|
* @author jricher
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
@Entity
|
|
||||||
@Embeddable
|
@Embeddable
|
||||||
public class JWSAlgorithmEntity {
|
public class JWSAlgorithmEntity {
|
||||||
|
|
||||||
|
@ -28,7 +28,6 @@ public class JWSAlgorithmEntity {
|
||||||
}
|
}
|
||||||
|
|
||||||
public JWSAlgorithmEntity(JWSAlgorithm algorithm) {
|
public JWSAlgorithmEntity(JWSAlgorithm algorithm) {
|
||||||
super();
|
|
||||||
this.algorithm = algorithm;
|
this.algorithm = algorithm;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue