Package org.picketlink.idm.spi.exception

Examples of org.picketlink.idm.spi.exception.OperationNotSupportedException


    public Map<String, String> getRelationshipProperties(
            IdentityStoreInvocationContext ctx,
            IdentityObjectRelationship relationship) throws IdentityException,
            OperationNotSupportedException {
        throw new OperationNotSupportedException("getRelationshipProperties() not supported");
    }
View Full Code Here


    }

    public Map<String, String> getRelationshipNameProperties(
            IdentityStoreInvocationContext ctx, String name)
            throws IdentityException, OperationNotSupportedException {
        throw new OperationNotSupportedException("getRelationshipNameProperties() not supported");
    }
View Full Code Here

    public void setRelationshipNameProperties(
            IdentityStoreInvocationContext ctx, String name,
            Map<String, String> properties) throws IdentityException,
            OperationNotSupportedException {
        throw new OperationNotSupportedException("setRelationshipNameProperties() not supported");
    }
View Full Code Here

    }

    public void setRelationshipProperties(IdentityStoreInvocationContext ctx,
                                          IdentityObjectRelationship relationship, Map<String, String> properties)
            throws IdentityException, OperationNotSupportedException {
        throw new OperationNotSupportedException("setRelationshipProperties() not supported");
    }
View Full Code Here

    }

    public void removeRelationshipNameProperties(
            IdentityStoreInvocationContext ctx, String name, Set<String> properties)
            throws IdentityException, OperationNotSupportedException {
        throw new OperationNotSupportedException("removeRelationshipNameProperties() not supported");
    }
View Full Code Here

    }

    public void removeRelationshipProperties(IdentityStoreInvocationContext ctx,
                                             IdentityObjectRelationship relationship, Set<String> properties)
            throws IdentityException, OperationNotSupportedException {
        throw new OperationNotSupportedException("removeRelationshipProperties() not supported");
    }
View Full Code Here

   public Map<String, String> getRelationshipProperties(
         IdentityStoreInvocationContext ctx,
         IdentityObjectRelationship relationship) throws IdentityException,
         OperationNotSupportedException
   {
      throw new OperationNotSupportedException("getRelationshipProperties() not supported");
   }
View Full Code Here

   public Map<String, String> getRelationshipNameProperties(
         IdentityStoreInvocationContext ctx, String name)
         throws IdentityException, OperationNotSupportedException
   {
      throw new OperationNotSupportedException("getRelationshipNameProperties() not supported");
   }
View Full Code Here

   public void setRelationshipNameProperties(
         IdentityStoreInvocationContext ctx, String name,
         Map<String, String> properties) throws IdentityException,
         OperationNotSupportedException
   {
      throw new OperationNotSupportedException("setRelationshipNameProperties() not supported");     
   }
View Full Code Here

   public void setRelationshipProperties(IdentityStoreInvocationContext ctx,
         IdentityObjectRelationship relationship, Map<String, String> properties)
         throws IdentityException, OperationNotSupportedException
   {
      throw new OperationNotSupportedException("setRelationshipProperties() not supported");
   }
View Full Code Here

TOP

Related Classes of org.picketlink.idm.spi.exception.OperationNotSupportedException

Copyright © 2018 www.massapicom. 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.