Search in sources :

Example 1 with LicenseDescriptor

use of com.sun.enterprise.deployment.LicenseDescriptor in project Payara by payara.

the class LicenseNode method writeDescriptor.

/**
 * write the descriptor class to a DOM tree and return it
 *
 * @param parent node for the DOM tree
 * @param the descriptor to write
 * @return the DOM tree top node
 */
public Node writeDescriptor(Node parent, ConnectorDescriptor descriptor) {
    LicenseDescriptor licenseDesc = descriptor.getLicenseDescriptor();
    if (licenseDesc != null) {
        Node licenseNode = appendChild(parent, ConnectorTagNames.LICENSE);
        writeLocalizedDescriptions(licenseNode, licenseDesc);
        appendTextChild(licenseNode, ConnectorTagNames.LICENSE_REQUIRED, licenseDesc.getLicenseRequiredValue());
    }
    return parent;
}
Also used : LicenseDescriptor(com.sun.enterprise.deployment.LicenseDescriptor) Node(org.w3c.dom.Node) DeploymentDescriptorNode(com.sun.enterprise.deployment.node.DeploymentDescriptorNode)

Example 2 with LicenseDescriptor

use of com.sun.enterprise.deployment.LicenseDescriptor in project Payara by payara.

the class ConnectorAnnotationHandler method processDescriptor.

public static void processDescriptor(Class annotatedClass, Connector connector, ConnectorDescriptor desc) {
    if (desc.getDescription().equals("") && connector.description().length > 0) {
        desc.setDescription(convertStringArrayToStringBuilder(connector.description()));
    }
    if (desc.getDisplayName().equals("") && connector.displayName().length > 0) {
        desc.setDisplayName(convertStringArrayToStringBuilder(connector.displayName()));
    }
    if ((desc.getSmallIconUri() == null || desc.getSmallIconUri().equals("")) && connector.smallIcon().length > 0) {
        desc.setSmallIconUri(convertStringArrayToStringBuilder(connector.smallIcon()));
    }
    if ((desc.getLargeIconUri() == null || desc.getLargeIconUri().equals("")) && connector.largeIcon().length > 0) {
        desc.setLargeIconUri(convertStringArrayToStringBuilder(connector.largeIcon()));
    }
    if (desc.getVendorName().equals("") && !connector.vendorName().equals("")) {
        desc.setVendorName(connector.vendorName());
    }
    if (desc.getEisType().equals("") && !connector.eisType().equals("")) {
        desc.setEisType(connector.eisType());
    }
    if (desc.getVersion().equals("") && !connector.version().equals("")) {
        desc.setVersion(connector.version());
    }
    if (desc.getLicenseDescriptor() == null) {
        // We will be able to detect whether license description is specified in annotation
        // or not, but "license required" can't be detected. Hence taking the annotated values *always*
        // if DD does not have an equivalent
        String[] licenseDescriptor = connector.licenseDescription();
        boolean licenseRequired = connector.licenseRequired();
        LicenseDescriptor ld = new LicenseDescriptor();
        ld.setDescription(convertStringArrayToStringBuilder(licenseDescriptor));
        ld.setLicenseRequired(licenseRequired);
        desc.setLicenseDescriptor(ld);
    }
    AuthenticationMechanism[] auths = connector.authMechanisms();
    if (auths != null && auths.length > 0) {
        for (AuthenticationMechanism auth : auths) {
            String authMechString = auth.authMechanism();
            int authMechInt = AuthMechanism.getAuthMechInt(authMechString);
            // check whether the same auth-mechanism is defined in DD also,
            // possible change could be with auth-mechanism's credential-interface for a particular
            // auth-mechanism-type
            boolean ignore = false;
            OutboundResourceAdapter ora = getOutbound(desc);
            Set ddAuthMechanisms = ora.getAuthMechanisms();
            for (Object o : ddAuthMechanisms) {
                AuthMechanism ddAuthMechanism = (AuthMechanism) o;
                if (ddAuthMechanism.getAuthMechType().equals(auth.authMechanism())) {
                    ignore = true;
                    break;
                }
            }
            // if it was not specified in DD, add it to connector-descriptor
            if (!ignore) {
                String credentialInterfaceName = ora.getCredentialInterfaceName(auth.credentialInterface());
                // XXX: Siva: For now use the first provided description
                String description = "";
                if (auth.description().length > 0) {
                    description = auth.description()[0];
                }
                AuthMechanism authM = new AuthMechanism(description, authMechInt, credentialInterfaceName);
                ora.addAuthMechanism(authM);
            }
        }
    }
    // merge DD and annotation entries of security-permission
    SecurityPermission[] perms = connector.securityPermissions();
    if (perms != null && perms.length > 0) {
        for (SecurityPermission perm : perms) {
            boolean ignore = false;
            // check whether the same permission is defined in DD also,
            // though it does not make any functionality difference except possible
            // "Description" change
            Set ddSecurityPermissions = desc.getSecurityPermissions();
            for (Object o : ddSecurityPermissions) {
                com.sun.enterprise.deployment.SecurityPermission ddSecurityPermission = (com.sun.enterprise.deployment.SecurityPermission) o;
                if (ddSecurityPermission.getPermission().equals(perm.permissionSpec())) {
                    ignore = true;
                    break;
                }
            }
            // if it was not specified in DD, add it to connector-descriptor
            if (!ignore) {
                com.sun.enterprise.deployment.SecurityPermission sp = new com.sun.enterprise.deployment.SecurityPermission();
                sp.setPermission(perm.permissionSpec());
                // XXX: Siva for now use the first provided Description
                String firstDesc = "";
                if (perm.description().length > 0)
                    firstDesc = perm.description()[0];
                sp.setDescription(firstDesc);
                desc.addSecurityPermission(sp);
            }
        }
    }
    // if reauth is false, we can ignore it as default value in dol is also false.
    if (connector.reauthenticationSupport()) {
        OutboundResourceAdapter ora = getOutbound(desc);
        if (!ora.isReauthenticationSupportSet()) {
            ora.setReauthenticationSupport(connector.reauthenticationSupport());
        }
    }
    // if transaction-support is no-transaction, we can ignore it as default value in dol is also no-transaction.
    if (!connector.transactionSupport().equals(TransactionSupport.TransactionSupportLevel.NoTransaction)) {
        OutboundResourceAdapter ora = getOutbound(desc);
        if (!ora.isTransactionSupportSet()) {
            ora.setTransactionSupport(connector.transactionSupport().toString());
        }
    }
    // merge the DD & annotation specified values of required-inflow-contexts
    // merge involves simple union of class-names of inflow-contexts of DD and annotation
    // due to the above approach, its not possible to switch off one of the required-inflow-contexts ?
    // TODO need to check support and throw exception ?
    Class<? extends WorkContext>[] requiredInflowContexts = connector.requiredWorkContexts();
    if (requiredInflowContexts != null) {
        for (Class<? extends WorkContext> ic : requiredInflowContexts) {
            desc.addRequiredWorkContext(ic.getName());
        }
    }
    if (desc.getResourceAdapterClass().equals("")) {
        if (isResourceAdapterClass(annotatedClass)) {
            desc.setResourceAdapterClass(annotatedClass.getName());
        }
    }
}
Also used : Set(java.util.Set) AuthenticationMechanism(javax.resource.spi.AuthenticationMechanism) WorkContext(javax.resource.spi.work.WorkContext) AuthMechanism(com.sun.enterprise.deployment.AuthMechanism) LicenseDescriptor(com.sun.enterprise.deployment.LicenseDescriptor) OutboundResourceAdapter(com.sun.enterprise.deployment.OutboundResourceAdapter) SecurityPermission(javax.resource.spi.SecurityPermission)

Aggregations

LicenseDescriptor (com.sun.enterprise.deployment.LicenseDescriptor)2 AuthMechanism (com.sun.enterprise.deployment.AuthMechanism)1 OutboundResourceAdapter (com.sun.enterprise.deployment.OutboundResourceAdapter)1 DeploymentDescriptorNode (com.sun.enterprise.deployment.node.DeploymentDescriptorNode)1 Set (java.util.Set)1 AuthenticationMechanism (javax.resource.spi.AuthenticationMechanism)1 SecurityPermission (javax.resource.spi.SecurityPermission)1 WorkContext (javax.resource.spi.work.WorkContext)1 Node (org.w3c.dom.Node)1