Examples of RegisteredServiceImpl


Examples of org.jasig.cas.services.RegisteredServiceImpl

    }

    @Override
    public RegisteredService read(final ByteBuffer buffer) {
        final String id = kryo.readObjectData(buffer, String.class);
        final AbstractRegisteredService svc = new RegisteredServiceImpl();
        svc.setServiceId(id);
        return svc;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.