313233343536373839
{ public Policy create_policy( int type, Any value ) throws PolicyError { if( type != SAS_POLICY_TYPE.value ) throw new PolicyError(); return new SASPolicyImpl( SASPolicyValuesHelper.extract( value )); }
31323334353637383940
{ public Policy create_policy( int type, Any value ) throws PolicyError { if( type != ATLAS_POLICY_TYPE.value ) throw new PolicyError(); return new ATLASPolicyImpl( ATLASPolicyValuesHelper.extract( value )); }
39404142434445464748
public Policy create_policy(int type, Any value) throws PolicyError { if (type != SSL_POLICY_TYPE.value) throw new PolicyError(); return new SSLPolicyImpl(SSLPolicyValueHelper.extract(value)); }
34353637383940414243
public Policy create_policy( int type, Any value ) throws PolicyError { if( type != BIDIRECTIONAL_POLICY_TYPE.value ) { throw new PolicyError(); } return new BiDirPolicyImpl( BidirectionalPolicyValueHelper.extract( value )); }